我有一个 tableView,我试图在 cell.imageView 中显示图像,但无论我做什么它都不会显示图像。 imageView 的子类是 PFImageView。我已经检查过 PFFile 和 UIImage 不是零。我究竟做错了什么?
这是我到目前为止尝试过的:
转换为 UIImage
override func tableView(tableView: UITableView!, cellForRowAtIndexPath indexPath: NSIndexPath!, object: PFObject!) -> PFTableViewCell! {
let cell = tableView.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath) as PFTableViewCell
cell.textLabel?.text = object.objectForKey("title") as NSString
let dateFormatter = NSDateFormatter()
dateFormatter.dateFormat = "yyyy-MM-dd" // superset of OP's format
let str = dateFormatter.stringFromDate(object.createdAt)
cell.detailTextLabel?.text = str
var theFile:PFFile = object.objectForKey("image") as PFFile
theFile.getDataInBackgroundWithBlock {
(imageData: NSData!, error: NSError!) -> Void in
if error == nil {
let image = UIImage(data:imageData)
dispatch_async(dispatch_get_main_queue()) {
cell.imageView?.image = image
}
}
}
return cell
}
最佳答案
您正在从一个闭包中设置图像,该闭包很可能不在主线程中运行。您应该将代码包含在 dispatch_async
中:
dispatch_async(dispatch_get_main_queue()) {
cell.imageView?.image = image
}
我认为这是问题所在,但我当然无法对其进行测试,因为我无法掌握您的所有资源。无论哪种方式,即使这不能解决问题,您也必须这样做,因为必须从主线程更新 UI 组件。
关于ios - cell.imageView 不显示图像,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/26083151/