我的問題是我怎樣才能保存與相冊中的textview圖像? 我的意思是,當我在圖像的儀式,我想將圖像保存與TextView的我把它寫 Click to see the Image我可以使用textview在相冊中保存圖像嗎?
,這裏是我的代碼,但不工作
@IBAction func SaveImage(_ sender: Any) {
let imageRepresentation = UIImagePNGRepresentation(cv1image.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)
}
它的工作,但文本沒有按」 t保存 enter image description here
什麼意思「不工作」?你能提供任何錯誤日誌或描述更好的行爲嗎? – araknoid
@araknoid我的意思是在專輯 – faten
不保存在光電保存,但沒有文字的看法?或者根本沒有被保存的東西? – LoganHenderson