gpt4 book ai didi

ios - 从 UIDocumentPicker 获取的本地 URL 在 2 或 3 分钟后不起作用

转载 作者:行者123 更新时间:2023-11-28 23:23:59 25 4
gpt4 key购买 nike

我有两个问题,在 google 上搜索了 5 天后仍找不到答案。

  1. uidocumentpicker 的帮助下,我曾经访问文件并选择 pdf 文档。在 didpicdocuments 方法的帮助下选择 pdf 后,我得到了 pdf 的 URL 并将其存储到一个数组中。并在表格 View 中显示一行,其中包含该 pdf 的名称。现在,当用户单击该行时,pdf 在 pdfkit 的帮助下打开,该 URL 存储在该数组中。到目前为止一切正常。现在问题出在两三分钟后,当我再次点击该行时,它没有打开该 pdf,它只会打开一个空白的 pdfview

  2. 在打开选择 pdf 时,我只想选择 pdf 文件,而不是其他文件,为此,我使用了移动核心服务,并在文档选择器的文档类型中提到了 pdf 类型。但即使在它之后它也不起作用我也无法选择 pdf 文件。

谢谢

func didSelectDocument(doc: String?) {
let importMenu = UIDocumentPickerViewController(documentTypes: [String("kUTTypePDF")], in: .import)
importMenu.delegate = self
//importMenu.allowsMultipleSelection = true
importMenu.modalPresentationStyle = .formSheet
self.present(importMenu, animated: true, completion: nil)
}

func documentPicker(_ controller: UIDocumentPickerViewController, didPickDocumentsAt urls: [URL]) {
if let url = urls.first {
urlArray.append(url)
}
}

用于打开 pdf

let vc = UIViewController()
vc.view.backgroundColor = .white
let pdfView = PDFView(frame: CGRect(x: 0, y: 0, width: vc.view.frame.width, height: vc.view.frame.height))
let pdfDocument2 = pdfDocuments[indexPath.row-(imageSelected.count)]
pdfView.displayMode = .singlePageContinuous
pdfView.autoScales = true

pdfView.document = pdfDocument2.pdf
vc.view.addSubview(pdfView)

navigationController?.pushViewController(vc, animated: true)

最佳答案

您无法保存它们。该 URL 是沙盒中的一个临时漏洞。来自 the docs对于 UIDocumentPickerViewController

Don’t save URLs provided by the open and move operations. You can, however, save a bookmark to these URLs. Call the bookmarkData(options:includingResourceValuesForKeys:relativeTo:) method and pass in the withSecurityScope option, creating a bookmark containing a security-scoped URL.

您需要保存一个 Security Scoped 书签,它本质上是一团 Data

关于ios - 从 UIDocumentPicker 获取的本地 URL 在 2 或 3 分钟后不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59158074/

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