gpt4 book ai didi

swift - 无法将类型 CKAsset 的值分配给类型 UIImage

转载 作者:行者123 更新时间:2023-11-28 12:33:13 24 4
gpt4 key购买 nike

将我的表格单元格的图像设置为我的“图片”时,我收到此代码中的错误。

 func tableView(_ tableView: UITableView, cellForRowAt indexPath: IndexPath) -> UITableViewCell {
let cell = tableView.dequeueReusableCell(withIdentifier: "foodcell") as! FoodTableCell
let restaurant: CKRecord = restaurantArrayList[indexPath.row]
cell.name?.text = restaurant.value(forKey: "Name") as? String


cell.picture?.image = restaurant.value(forKey: "Picture") as? CKAsset
//the error is here ^
return cell

我将如何成功地将我的“图片”键设置为我单元格中的图像?

最佳答案

CKAsset 不是图像格式,而更像是指向 Assets 的 URL 的包装器。

假设您的 restaurant 记录在键“Picture”下确实有一项 Assets :

let asset = resturaunt["picture"] as! CKAsset
// 'resturaunt["picture"]' is just another way of writing 'restaurant.value(forKey: "Picture")'

let data = try! Data(contentsOf: asset.fileURL)
// this contains the binary data from the asset url

let image = UIImage(date: data)
// now make an image with that binary data

上面有很多强制解包选项,你可能想要采取的更安全的方法是这样的:

if let asset = resturaunt["picture"] as? CKAsset, 
let data = try? Data(contentsOf: asset.fileURL) {

cell.picture?.image = UIImage(date: data)
}

使用try?

Data(contentsOf: asset.fileURL) 可能会引发您需要从中恢复的错误,因此您需要使用 try 关键字并管理它可能出现的错误扔。

Swift 3 添加了 do-try-catch 错误处理语法,采用这种一般形式:

do {
// statements that might throw an error need to be called within here
try callSomeMethodThatMightThrow()
let value = try callMethodReturnValueMightThrow()
}
catch {
// statements in this block will get called if an error was encountered
}

try? 是处理此问题的一种简写方式,它避免了 do-catch 语法。当你使用它时,你是在说,“如果发生错误,则将值赋给 nil

这里有一篇更详细的帖子,更详细地解释了 trytry?try! 的使用 https://cocoacasts.com/error-handling-in-swift-with-the-try-keyword/

关于swift - 无法将类型 CKAsset 的值分配给类型 UIImage,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41527872/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com