4

上記の赤で強調表示されている問題が発生しています。写真を撮って「写真を使う」を押しても、撮った写真をiPadのフォトアルバムに保存できません。私は他の方法を検討しましたが、私は iOS 開発の初心者であるため、この問題を解決する方法がわかりません。sigabrt エラーが発生することもあります。

http://i.stack.imgur.com/Gb7o3.png

4

2 に答える 2

8

完了セレクターを提供しましたか?

...
UIImageWriteToSavedPhotosAlbum(imageView.image!, self, "image:didFinishSavingWithError:contextInfo:", nil) 
...



func image(image: UIImage, didFinishSavingWithError error: NSError?, contextInfo:UnsafePointer<Void>) {
    if error == nil {
        let ac = UIAlertController(title: "Saved!", message: "Your altered image has been saved to your photos.", preferredStyle: .Alert)
        ac.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
        presentViewController(ac, animated: true, completion: nil)
    } else {
        let ac = UIAlertController(title: "Save error", message: error?.localizedDescription, preferredStyle: .Alert)
        ac.addAction(UIAlertAction(title: "OK", style: .Default, handler: nil))
        presentViewController(ac, animated: true, completion: nil)
    }
}
于 2016-03-03T02:07:14.477 に答える