DKImagePickerControllerを使って画像を取り出したい
DKImagePickerControllerで取り出した画像を変数selectedImagesに入れたいのですが,Fatal error: Unexpectedly found nil while implicitly unwrapping an Optional valueというエラーが出ています。print(image)してみると画像はちゃんとimageに入っていました。
どうすれば、imageを変数の配列の中に入れることができるでしょうか??
ご教授お願いいたします。
class PostViewController: UIViewController,UIScrollViewDelegate, UINavigationControllerDelegate,UIImagePickerControllerDelegate { var resizedImage: UIImage! var selectedImages : [UIImage]! override func viewDidLoad() { super.viewDidLoad() } @IBAction func selectImage() { let alertController = UIAlertController(title: "画像選択", message: "シェアする画像を選択して下さい。", preferredStyle: .actionSheet) let cancelAction = UIAlertAction(title: "キャンセル", style: .cancel) { (action) in alertController.dismiss(animated: true, completion: nil) } let cameraAction = UIAlertAction(title: "カメラで撮影", style: .default) { (action) in // カメラ起動 if UIImagePickerController.isSourceTypeAvailable(.camera) == true { let picker = UIImagePickerController() picker.sourceType = .camera picker.delegate = self self.present(picker, animated: true, completion: nil) } else { print("この機種ではカメラが使用出来ません。") } } let photoLibraryAction = UIAlertAction(title: "フォトライブラリから選択", style: .default) { (action) in // アルバム起動 if UIImagePickerController.isSourceTypeAvailable(.photoLibrary) == true { let pickerController = DKImagePickerController() pickerController.delegate = self // 選択可能上限の設定もできます pickerController.maxSelectableCount = 5 pickerController.didSelectAssets = { [unowned self] (assets: [DKAsset]) in // 選択された画像はassetsに入れて返却されますのでfetchして取り出すとよいでしょう for asset in assets { asset.fetchFullScreenImage(completeBlock: { (image, info) in // ここで取り出せます print(image,"画像") self.selectedImages.append(image!)//ここでエラー }) } } self.present(pickerController, animated: true) {} // nil) } else { print("この機種ではフォトライブラリが使用出来ません。") } } alertController.addAction(cancelAction) alertController.addAction(cameraAction) alertController.addAction(photoLibraryAction) self.present(alertController, animated: true, completion: nil) }
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2020/08/31 15:34