写真を保存するコードでエラーが出る
iPhoneアプリでボタンから写真を保存したいのですが,
swift
1 @IBAction func savePicture(_ sender: Any) { 2 let image:UIImage! = cameraView.image 3 4 if image != nil { 5UIImageWriteToSavedPhotosAlbum( 6 image, 7 self, 8 #selector(ViewController.image(_:didFinishSavingWithError:contextInfo:)), 9 nil) 10 } 11 else{ 12 print("image Failed !") 13 } 14 15 16 }
のコードを書くと
Type 'ViewController' has no member 'image(_:didFinishSavingWithError:contextInfo:)'
とエラーが出ました。
どこを変更すれば良いでしょうか
参考にしたものは
https://i-app-tec.com/ios/camera.html の // 写真を保存 の部分
です。
あなたの回答
tips
プレビュー