前提・実現したいこと / 発生している問題・エラーメッセージ
Swiftで画像を登録するプログラムを作ろうと思っています。(Twitterのアイコンを変更するような感じのプログラムです。)
AlertControllerでカメラとフォトライブラリを起動したいのですが、起動してくれません。
アプリのクラッシュも無いため、エラーログも出力されない状態です。
どうしたらいいか完全に手詰まりです。
どうかご教示のほど、よろしくお願いします。
class AddItemViewController: UIViewController, UIImagePickerControllerDelegate, UINavigationControllerDelegate { (中略) @IBAction func selectImage(){ let actioncontroller = UIAlertController(title: "画像を選択", message: "選択してください", preferredStyle: .actionSheet) let cameracontroller = 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 albumaction = UIAlertAction(title: "フォトライブラリ", style: .default) { (action) in if UIImagePickerController.isSourceTypeAvailable(.camera) == true{ let picker = UIImagePickerController() picker.sourceType = .photoLibrary picker.delegate = self self.present(picker, animated: true, completion: nil) } else { print("この端末ではアルバムを使用できない") } } let cancelaction = UIAlertAction(title: "キャンセル", style: .cancel) { (action) in actioncontroller.dismiss(animated: true, completion: nil) } actioncontroller.addAction(cameracontroller) actioncontroller.addAction(albumaction) actioncontroller.addAction(cancelaction) self.present(actioncontroller, animated: true, completion: nil) }
その結果(コンソールの出力)
この端末ではカメラを使用できない この端末ではアルバムを使用できない
試したこと
info.plistで privacyのところにあるcamera と photo liblary の usageは追加済みです。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2018/11/20 10:31