我正在使用parse来存储和检索一些数据,然后我将其加载到UITableview中,每个单元格都包含一些文本和图像,但是当我打开我的tableview时,视图中的任何单元格都不显示图像,直到我滚动它们离开视图并返回视图(我猜这是调用cellForRowAtIndexPath)。有没有办法检查下载所有图像的时间,然后重新加载tableview?
func loadData(){
self.data.removeAllObjects()
var query = PFQuery(className:"Tanks")
query.orderByAscending("createdAt")
query.findObjectsInBackgroundWithBlock {
(objects: [AnyObject]!, error: NSError!) -> Void in
if error == nil {
// The find succeeded.
for object in objects {
self.data.addObject(object)
}
} else {
// Log details of the failure
NSLog("Error: %@ %@", error, error.userInfo!)
}
self.tableView.reloadData()
}
}
override func tableView(tableView: UITableView?, cellForRowAtIndexPath indexPath: NSIndexPath?) -> UITableViewCell {
self.cell = tableView!.dequeueReusableCellWithIdentifier("Cell", forIndexPath: indexPath!) as TankTableViewCell // let cell:TankTableViewCell
let item:PFObject = self.data.objectAtIndex(indexPath!.row) as PFObject
self.cell.productName.alpha = 1.0
self.cell.companyName.alpha = 1.0
self.cell.reviewTv.alpha = 1.0
self.rating = item.objectForKey("rating") as NSNumber
cell.productName.text = item.objectForKey("prodName") as? String
cell.companyName.text = item.objectForKey("compName") as? String
self.cell.reviewTv.text = item.objectForKey("review") as? String
let userImageFile = item.objectForKey("image") as PFFile
userImageFile.getDataInBackgroundWithBlock({
(imageData: NSData!, error: NSError!) -> Void in
if (error == nil) {
let image = UIImage(data:imageData)
self.cell.productImage.image = image
}
}, progressBlock: {
(percentDone: CInt) -> Void in
if percentDone == 100{
}
})
self.setStars(self.rating)
// Configure the cell...
UIView.animateWithDuration(0.5, animations: {
self.cell.productName.alpha = 1.0
self.cell.companyName.alpha = 1.0
self.cell.reviewTv.alpha = 1.0
self.cell.reviewTv.scrollRangeToVisible(0)
})
return cell
}
答案 0 :(得分:0)
您可以在UITableViewController中设置一个委托方法,该方法由另一个获取图像的控制器类调用。我怀疑这是你想要做的事情。
您应该做的是使用默认图像初始化单元格,让单元控制器本身在后台获取图像,并在获取完成时更新其UIImageView。你绝对不想在重新加载表之前等待所有图像加载,因为a。)需要很长时间,而b。)如果一个失败或超时怎么办?
一旦单元格加载了其图像,如果它被回收者换出并重新插入,只需getData
而不是getDataInBackground
,只需isDataAvailable
即可获得缓存图像。{ 1}}是真的。
答案 1 :(得分:0)
问题是您使用self.cell
并且每次返回单元格时都会更改该引用。因此,当图像被加载时,它们都被设置到要返回的最后一个单元格中,这可能不在屏幕上(或者至少不完全)。
你真的应该在图像下载的完成块中捕获单元格(并检查单元格是否仍然链接到相同的索引路径)。
此外,您应该缓存下载的图像,这样您就不必总是下载数据/重新创建图像。
答案 2 :(得分:0)
你的行后:
self.cell.productImage.image = image
尝试添加:
cell.layoutSubviews()
或self.cell.layoutSubviews()
它应该在第一个表视图中呈现子视图或本例中的图像。