1
Swiftのギャラリーから画像を取得しようとしています。ギャラリーから画像をキャプチャするときに、不明なタイプの画像フォーマットを作成するときにエラーが発生します。Swift
func showPicker(type : UIImagePickerControllerSourceType) {
let imagePicker = UIImagePickerController()
imagePicker.delegate = self
imagePicker.sourceType = type
imagePicker.allowsEditing = false
self.present(imagePicker, animated: true, completion: nil)
}
その後:
self.showPicker(type: .savedPhotosAlbum)
しかし、私はそれが言う代わりに、ログに、私のデバイス上のギャラリーを入力して、写真を何も起こりません選ぶとき:[Generic] Creating an image format with an unknown type is an error
どのようにギャラリーを解任し、画像を保存しますか?