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

Posted

技术标签:

【中文标题】无法将 CKAsset 类型的值分配给 UIImage 类型【英文标题】:Cannot assign value of type CKAsset to type UIImage 【发布时间】:2017-01-07 23:47:20 【问题描述】:

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

 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 won't show in tableview image的可能重复 【参考方案1】:

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

假设您的restaurant 记录在“图片”键下确实有资产:

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)

尝试使用?

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/的使用

【讨论】:

你是个好人,哈哈。代码运行良好。这两段代码也很高兴拥有程序的完整“图片”。 抱歉,补充回复。虽然代码正是我所需要的(再次感谢您!),您介意解释一下“let data = try!Data(contentsOf:asset.fileURL”这行代码吗?我希望了解它的基础知识一切似乎都无法理解这一点。任何回应都将不胜感激! 没问题!我在答案中添加了更多细节,还有一个链接可以很好地解释选项

以上是关于无法将 CKAsset 类型的值分配给 UIImage 类型的主要内容,如果未能解决你的问题,请参考以下文章

无法将类型“AppDelegate”的值分配给类型“CLLocationManagerDelegate?”

无法将类型“类”的值分配给类型“[类]”

无法将“颜色”类型的值分配给“UIColor”类型

无法将类型 [NSObject] 的值分配给类型 NSObject

无法将“String”类型的值分配给“MyOrderTableViewCell”类型

PromiseKit 无法将类型 '[Result<TYPE>]' 的值分配给类型 '[TYPE]