Firebase Storageを用いて画像データのアップロードとダウンロードを行おうとしています。
class accountViewController: UIViewController, UIImagePickerControllerDelegate,UINavigationControllerDelegate { let firebaseAuth = Auth.auth() let imagePick = UIImagePickerController() @IBOutlet weak var profImage: UIImageView! override func viewDidLoad() { super.viewDidLoad() imagePick.delegate = self let storage = Storage.storage() let reference = storage.reference(forURL: "gs://XXX.appspot.com") let child = reference.child("Images/" + firebaseAuth.currentUser!.uid + "/"+"prof.jpg") child.getData(maxSize: 1 * 1024 * 1024) { data, error in if error != nil { } else { self.profImage.image = UIImage(data: data!) } } } @IBAction func changeProfImage(_ sender: Any) { imagePick.sourceType = .photoLibrary imagePick.modalPresentationStyle = .fullScreen present(imagePick, animated: true, completion: nil) } // カメラロールから写真を選ぶ func imagePickerController(_ picker: UIImagePickerController, didFinishPickingMediaWithInfo info: [UIImagePickerController.InfoKey : Any]) { dismiss(animated: true, completion: nil) //保存のアラートを出す let alert: UIAlertController = UIAlertController(title: "保存しますか?", message: "Want to save?", preferredStyle: UIAlertController.Style.alert) // OKの場合 let defaultAction: UIAlertAction = UIAlertAction(title: "OK", style: UIAlertAction.Style.default, handler:{ (action: UIAlertAction!) -> Void in print("OK") if let pickedImage = info[.originalImage] as? UIImage { self.profImage.contentMode = .scaleAspectFit self.profImage.image = pickedImage } self.upload() }) //キャンセルの場合 let cancelAction: UIAlertAction = UIAlertAction(title: "キャンセル", style: UIAlertAction.Style.cancel, handler:{ (action: UIAlertAction!) -> Void in print("選択をキャンセルしました") }) alert.addAction(defaultAction) alert.addAction(cancelAction) self.present(alert, animated: true, completion: nil) } // Firebaseにアップロード fileprivate func upload() { let storageRef = Storage.storage().reference(forURL: "gs://XXX.appspot.com").child("Images/" + firebaseAuth.currentUser!.uid + "/"+"prof.jpg") let metaData = StorageMetadata() metaData.contentType = "image/jpg" if let uploadData = self.profImage.image?.jpegData(compressionQuality: 0.3) { storageRef.putData(uploadData, metadata: metaData) { (metadata , error) in if error != nil { print("error: (error!.localizedDescription)") return } storageRef.downloadURL(completion: { (url, error) in if error != nil { print("error: (error!.localizedDescription)") } print("url: (url!.absoluteString)") }) } } } // 写真を選ぶのをキャンセル func imagePickerControllerDidCancel(_ picker: UIImagePickerController) { dismiss(animated: true, completion: nil) print("キャンセルされました") } }
上記のコードを書きシュミレーターで動きをテストしてみたのですが、print("url: (url!.absoluteString)")でエラー
Unexpectedly found nil while unwrapping an Optional value
が出てしまいます。
現在の状況としてはFirebase Storageにはアップロードすることはできたのですが、viewDidLoadで行うはずのダウンロードができていません。
念の為Outlet接続がきちんと行われているかをStoryboardで確認しましたが、問題はなさそうでした。
問題点がお分かりになる方がいらっしゃいましたらご教授いただけますか。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。