我有一个文档选择器,但在选择文档后,didPickDocumentAt部分永远不会被触发。它在我更新swift之前工作,现在有什么不同吗?
func selectDocument(_ sender: UIButton!){
let documentPickerVC = UIDocumentPickerViewController(documentTypes: ["org.openxmlformats.wordprocessingml.document", "com.microsoft.word.doc"], in: UIDocumentPickerMode.import)
documentPickerVC.delegate = self
self.present(documentPickerVC, animated: true, completion: nil)
}
func documentPicker(_ documentPicker: UIDocumentPickerViewController, didPickDocumentAt url: URL) {
print("file picked: \(url)")
documentPicker.dismiss(animated: true, completion: nil)
}
也没有'失败',它只是没有调用documentPicker
方法。
我有一个类似的选择媒体,一个工作正常......
func selectMedia(_ sender: UIButton!){
if UIImagePickerController.isSourceTypeAvailable(UIImagePickerControllerSourceType.photoLibrary){
picker.delegate = self
picker.allowsEditing = false
picker.mediaTypes = [kUTTypeMovie as String]
self.present(picker, animated: true, completion: nil)
}
}
func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info:[String: Any]) {
let url = info[UIImagePickerControllerMediaURL] as! URL
print("media picked: \(url)")
}
编辑:
我刚刚添加了documentPickerWasCancelled
方法,并且出于某种原因,我在选择文档时会调用它。
注意我从谷歌驱动器中选择一个文件,会对任何事情产生影响吗?
编辑2: 已回答,已卸载并重新安装并且有效。见下面的答案。谢谢大家的建议。
答案 0 :(得分:1)
上面的代码看起来是正确的。我卸载了谷歌驱动器应用程序(我从中获取文件)并重新安装它,然后它按预期工作。我也尝试过dropbox,也很有用。
不确定之前是什么让它失败了。