关于UIImagePickerController报错 failed with error: (null)

445 阅读1分钟

最近用模拟器调试打开相册功能,总是报错

UIImagePickerController extension discovery failed

无奈之下,使用了真机进行测试 发现正常没有报此错误

记录下来 顺便记录下几个问题

  • kUTTypeMovie 已经被设置为 deprecated 需要使用 UTTypeMovie 替换 在 swift 中可以使用 UTType.move.identifier 来替换

  • 使用 UTType 需要 import UniformTypeIdentifiers

  • UIImagePickerController.SourceType.photoLibrary 即将 deprecated 需要使用 PHPicker 这里应该是需要使用 PHPickerViewController 来替换