CKAsset 不会显示在表格视图图像中

CKAsset won't show in tableview image

我在 cloudkit 数据库中有一个可选图像(已检查数据库,如果我在测试中添加它,图像就在那里)。我创建了一个 class 将记录字段初始化为我在我的表视图中使用的变量。我也有一个自定义单元格。但图像不会显示在我的自定义 tableview 单元格中。我不知道 tableview 图像中的可选图像是否会导致问题,或者我的 code/settings in cloudkit 是否有问题。

非常感谢任何帮助,因为我已经被困了一个多星期了,网上几乎没有关于此的信息。

这是我的 class 代码:

var feedResults = [UserPosts]()

class UserPosts {

var record: CKRecord
var description: String
var username: String
//var image: CKAsset? // tried also initializing the CKAsset separately
var postPic: UIImage?


init(record: CKRecord) {

    self.record = record
    self.description = record.objectForKey("description") as String
    self.username = record.objectForKey("username") as String
   // self.image = record.objectForKey("postPic") as? CKAsset


    if var pic = record.objectForKey("postPic") as CKAsset! {

           self.postPic = UIImage(contentsOfFile: pic.fileURL.path!)

            // below is the other way I've seen it done.
               // var url = pic.fileURL!
               // var imageData = NSData(contentsOfFile: url.path!)
              // self.postPic = UIImage(data: imageData!)

    }
}

}

这是我的表格视图代码:

    override func tableView(tableView: UITableView, cellForRowAtIndexPath indexPath: NSIndexPath) -> UITableViewCell {
    let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as TableViewCell

    let record = feedResults[indexPath.row]
    cell.postDescription.text = record.description
    cell.userName.text = record.username

    if record.postPic != nil {

         cell.postPic.image = record.postPic!

    }

    return cell
}

我还看到了几种将 CKAsset 拉入 UIImage 的方法。第一种方式,是我看到 Apple 在他们的 CloudKitAtlas 项目中的做法。虽然我不太精通 Obj-C,但我认为我正确地遵循了它 - CloudKitAtlas Example

我也看到它是使用 NSData(contentOFFile:) 和 UIImage(data:) 完成的,如 post 此处所示:SO CKAsset Example

尝试不使用 .paths 并使用 contentsOfURL。这就是我这样做的方式(在您的 CKAsset if 中):

         if var data = NSData(contentsOfURL: pic!.fileURL) {
            self.postPic =  UIImage(data: data!)!
        }

除此之外...您执行 dequeueReusableCellWithIdentifier 但不检查它是否 returns nil。你应该创建一个新的单元实例如果它是 nil

您可以像这样显示来自 CKAsset 的图像:

    var img = record.valueForKey("Picture") as? CKAsset
    cell.imageView?.image = UIImage(contentsOfFile: img!.fileURL.path!)

希望对您有所帮助!