Сохранение изображения в библиотеку фотографий с помощью Swift 2.0
Я получаю проблему, выделенную красным цветом выше. Когда я делаю фотографию и нажимаю "Использовать фотографию", она не позволяет мне сохранить фотографию, которую я сделал, в фотоальбом на моем iPad. Я смотрел на другие пути, но, будучи новичком в разработке для iOS, я не уверен, как решить эту проблему. Иногда я тоже получаю ошибку sigabrt.
2 ответа
Вы предоставили селектор завершения?
...
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)
}
}
Вы можете использовать это;
@IBAction func downloadButton(_ sender: Any) {
let imageRepresentation = UIImagePNGRepresentation(photoView.image!)
let imageData = UIImage(data: imageRepresentation!)
UIImageWriteToSavedPhotosAlbum(imageData!, nil, nil, nil)
let alert = UIAlertController(title: "Completed", message: "Image has been saved!", preferredStyle: .alert)
let action = UIAlertAction(title: "Ok", style: .default, handler: nil)
alert.addAction(action)
self.present(alert, animated: true, completion: nil)
}