我正在尝试使用UIDocumentInteractionController
. 本质上,我正在使用以下代码:
@IBAction func createDocumentButtonClicked(_ sender: Any) {
do {
// create temporary file
let tempUrl = FileManager.default.temporaryDirectory.appendingPathComponent("fileName.txt")
try "abc".write(to: tempUrl, atomically: true, encoding: .utf8)
// share file
let documentInteractionController = UIDocumentInteractionController(url: tempUrl)
documentInteractionController!.name = "filename.txt"
documentInteractionController!.presentOptionsMenu(from: view.frame, in: view, animated: true)
} catch {
// ...
}
}
运行时,此代码显示共享操作表。日志表明存在一些问题:Could not instantiate class NSURL. Error: Error Domain=NSCocoaErrorDomain Code=4864 "The URL archive of type “public.url” contains invalid data." UserInfo={NSDebugDescription=The URL archive of type “public.url” contains invalid data.
选择任何选项都会导致处理文档失败。
这被简化为几乎教科书级别的代码,但它不起作用。我错过了什么?
更新: 添加了更好地强调问题原因的上下文(请参阅下面的答案)。