我的代码拍摄照片并使用avfoundation将其保存到照片库中。我只是不知道在哪里请求将保存到照片库的照片也传输到图像视图中:
Array[(String, Int)] = Array((AE,5), (BX,9))
代码:
@IBOutlet var placeImage: UIImageView!.
答案 0 :(得分:0)
只需使用didFinishSavingWithError
方法:
func image(_ image: UIImage, didFinishSavingWithError error: NSError?, contextInfo: UnsafeRawPointer) {
if let error = error {
let ac = UIAlertController(title: "Save error", message: error.localizedDescription, preferredStyle: .alert)
ac.addAction(UIAlertAction(title: "OK", style: .default))
present(ac, animated: true)
} else {
placeImage.image = image
}
}