我需要将URL中的PDF文档保存到设备中。是否可以保存PDF并从设备文件管理器访问它,而无需使用UIActivityViewController或UIDocumentInteractionController。
答案 0 :(得分:1)
在Info.plist中添加以下两个键: LSSupportsOpeningDocumentsInPlace 和 UIFileSharingEnabled 。并将YES设置为两者的值。
现在,您将可以使用“文件”应用查看在“文档目录”中该应用保存的所有文件。
答案 1 :(得分:0)
Swift 5.0和iOS13
let documentController = UIDocumentPickerViewController(url: exportToURL, in: .exportToService)
self.present(documentController, animated: true, completion: nil)
exportToURL 表示要保存到iPhone Files应用程序中的任何文件的应用程序本地URL。