从URL下载图像并显示到表格视图中,当我选择图像时,它将存储到照片库中。我已成功从网址获取图像并显示到表视图,但在选择图像后无法将它们存储到照片库中。
这是我的代码:
var parsingdata = [Datavalues]()
func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = Tableview.dequeueReusableCell(withIdentifier: "cell", for: indexPath) as! CustomTableViewCell
let row = indexPath.row
let cellvalues = parsingdata[row] as Datavalues
cell.CategoryImage.downloadImageFrom(link: cellvalues.categoryImage, contentMode: .scaleToFill)
cell.categoryName.text = cellvalues.categoryName
cell.IDLabel.text = String(cellvalues.id)
return cell
}
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let indexPath = tableView.indexPathForSelectedRow!
let imagestring = String(parsingdata[indexPath.row].categoryImage)
//Image add name is stored into the imagestring
let documentsDirectoryURL = try! FileManager().url(for: .documentDirectory, in: .userDomainMask, appropriateFor: nil, create: true)
let fileURL = documentsDirectoryURL.appendingPathComponent("Savedframe.png")
if !FileManager.default.fileExists(atPath: fileURL.path) {
do {
try UIImagePNGRepresentation(imagestring)!.write(to: fileURL)
print("Image Added Successfully")
} catch {
print(error)
}
} else {
print("Image Not Added")
}
}
我哪里做错了?我的目标是从网址下载图片,在选择图片时将它们存储到照片库。
答案 0 :(得分:3)
尝试使用didSelectRowAt
方法,将image
字符串转换为URL
并将其转换为Data
,将图片创建为Data
后保存它就像下面一样。
如果您的图片规模较大,则需要将URL
转换为Data
background thread
并将image
保存到photosAlbum
main thread
}。
func tableView(_ tableView: UITableView, didSelectRowAt indexPath: IndexPath) {
let imagestring = String(parsingdata[indexPath.row].categoryImage)
if let url = URL(string: imagestring),
let data = try? Data(contentsOf: url),
let image = UIImage(data: data) {
UIImageWriteToSavedPhotosAlbum(image, nil, nil, nil)
}
}