就像使用UIImagePickerViewController
浏览UIIMAge一样,有没有办法浏览Swift / objective代码中的其他文件?
if let fileURL = NSBundle.mainBundle().URLForResource("MyImage", withExtension: "jpg") {
// Instantiate the interaction controller
self.docController = UIDocumentInteractionController(URL: fileURL)
}
else {
shareButton.enabled = false
print("File missing! Button has been disabled")
}
2条答案
按热度按时间njthzxwz1#
您只能访问文档文件夹中的文件。要访问所有文件
如果你想要单个文件,看下面的代码:
jtw3ybtb2#
如果您想在应用程序中查看PDF文件,有两种方法。
PDF查看-适用于iOS 11.0
WKWebView-适用于iOS 8.0系统
您也可以使用UIWebview来获得相同的结果,但它已被弃用。
或者,使用一个文件资源管理器库,您可以根据需要进行自定义。
https://developer.apple.com/documentation/pdfkit/pdfviewhttps://developer.apple.com/documentation/webkit/wkwebview