gpt4 book ai didi

xamarin.ios - Monotouch 在设备上打开 pdf?

转载 作者:行者123 更新时间:2023-12-03 06:16:10 25 4
gpt4 key购买 nike

我需要在 monotouch 应用程序中打开我的 bundle 中的 pdf 文件。我不知道它是否来自路径,但我无法打开该 pdf。有人可以给我一个如何打开 pdf 文件的示例吗?我正在使用 pdftron 库。

最佳答案

首先确保您的文件在 MonoDevelop 的 Build Action 中标记为 Content。这将确保它被复制到您的应用程序包中。

然后,从您的应用程序中,您可以使用以下属性获取应用程序包路径:

NSBundle.MainBundle.BundlePath

从中您可以尝试探测您的文件,例如

if (File.Exists (Path.Combine (NSBundle.MainBundle.BundlePath, "myfile.pdf")) {
Console.WriteLine ("got it");
} else {
Console.WriteLine ("can't find it");
}

一旦找到文件的正确路径,您应该能够将其提供给您的 PDF 库。

关于xamarin.ios - Monotouch 在设备上打开 pdf?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11083011/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com