基于文档的应用程序
Document-Based Application
Xcode 9 / iOS 11:
我的应用程序创建 pdf 文件,这些文件使用来自核心数据库的数据呈现。 pdf 是从 WebView 创建的,并存储在文档目录中。到目前为止一切正常。我可以在 Apple 的文件应用程序中打开 pdf 文件,甚至可以在那里进行编辑。我想在我的应用程序中实现 DocumentBrowserViewController。我使用了 Xcode 9 中的模板。我无法像在 Apple 的文件应用程序中那样在 DocumentViewController 中显示创建的 pdf 文件。我可以选择文档,但 DocumentViewController 仅显示文件名和完成按钮。从模板中显示此 DocumentViewController 中现有 pdf 的最简单方法是什么?我必须在哪里实施相关代码?
来自 Xcode9-模板的代码:
class DocumentViewController: UIViewController {
@IBOutlet weak var documentNameLabel: UILabel!
var document: UIDocument?
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
// Access the document
document?.open(completionHandler: { (success) in
if success {
// Display the content of the document, e.g.:
self.documentNameLabel.text = self.document?.fileURL.lastPathComponent
// --> How to show/load the pdf here? Do I have to create a UIView here first?
} else {
// Make sure to handle the failed import appropriately, e.g., by presenting an error message to the user.
}
})
}
这里是来自 Xcode 9 模板的 UIDocument 的子class:
class 文档:UIDocument {
var pdfData: PreviewViewController?
override func contents(forType typeName: String) throws -> Any {
// Encode your document with an instance of NSData or NSFileWrapper
return Data()
}
override func load(fromContents contents: Any, ofType typeName: String?) throws {
// --> do I have to load the pdf here?
}
}
我在应用程序开发方面不是很有经验。我在 iTunesU 上观看了 Paul Hagerty 的 cs193p 课程,内容是关于 UIDocument 的持久性。但他正在保存应用程序的模型,我有一个 pdf。有没有一种简单的方法来显示 pdf 文件?我尝试了不同的方式来加载 pdf,但我不确定是否必须先创建 UIView。文件应用程序中的一个不错的功能是您可以编辑或通过电子邮件发送 pdf。
UIDocumentBrowserViewController
的重要资源是 2017 年的 WWDC 视频:
Building Great Document-based Apps in iOS 11 - WWDC 2017
在 func load
的评论中回答您的问题。是的,你在这里得到你的 pdf Data
:
override func load(fromContents contents: Any, ofType typeName: String?) throws {
guard let data = contents as? Data else { return }
}
但是你应该做的是在你的 DocumentViewController
中加载 fileURL
这是 UIDocument
的 属性 到 UIWebView
可以轻松显示pdf文件。看看这里:
然后在您的 document.open
函数中将 fileURL
传递给您的 UIWebView
。
Xcode 9 / iOS 11: 我的应用程序创建 pdf 文件,这些文件使用来自核心数据库的数据呈现。 pdf 是从 WebView 创建的,并存储在文档目录中。到目前为止一切正常。我可以在 Apple 的文件应用程序中打开 pdf 文件,甚至可以在那里进行编辑。我想在我的应用程序中实现 DocumentBrowserViewController。我使用了 Xcode 9 中的模板。我无法像在 Apple 的文件应用程序中那样在 DocumentViewController 中显示创建的 pdf 文件。我可以选择文档,但 DocumentViewController 仅显示文件名和完成按钮。从模板中显示此 DocumentViewController 中现有 pdf 的最简单方法是什么?我必须在哪里实施相关代码?
来自 Xcode9-模板的代码:
class DocumentViewController: UIViewController {
@IBOutlet weak var documentNameLabel: UILabel!
var document: UIDocument?
override func viewWillAppear(_ animated: Bool) {
super.viewWillAppear(animated)
// Access the document
document?.open(completionHandler: { (success) in
if success {
// Display the content of the document, e.g.:
self.documentNameLabel.text = self.document?.fileURL.lastPathComponent
// --> How to show/load the pdf here? Do I have to create a UIView here first?
} else {
// Make sure to handle the failed import appropriately, e.g., by presenting an error message to the user.
}
})
}
这里是来自 Xcode 9 模板的 UIDocument 的子class:
class 文档:UIDocument {
var pdfData: PreviewViewController?
override func contents(forType typeName: String) throws -> Any {
// Encode your document with an instance of NSData or NSFileWrapper
return Data()
}
override func load(fromContents contents: Any, ofType typeName: String?) throws {
// --> do I have to load the pdf here?
}
}
我在应用程序开发方面不是很有经验。我在 iTunesU 上观看了 Paul Hagerty 的 cs193p 课程,内容是关于 UIDocument 的持久性。但他正在保存应用程序的模型,我有一个 pdf。有没有一种简单的方法来显示 pdf 文件?我尝试了不同的方式来加载 pdf,但我不确定是否必须先创建 UIView。文件应用程序中的一个不错的功能是您可以编辑或通过电子邮件发送 pdf。
UIDocumentBrowserViewController
的重要资源是 2017 年的 WWDC 视频:
Building Great Document-based Apps in iOS 11 - WWDC 2017
在 func load
的评论中回答您的问题。是的,你在这里得到你的 pdf Data
:
override func load(fromContents contents: Any, ofType typeName: String?) throws {
guard let data = contents as? Data else { return }
}
但是你应该做的是在你的 DocumentViewController
中加载 fileURL
这是 UIDocument
的 属性 到 UIWebView
可以轻松显示pdf文件。看看这里:
然后在您的 document.open
函数中将 fileURL
传递给您的 UIWebView
。