我正在尝试使用自定义单元格实现UICollectionView
。
设置为以下:
PFFiles
图片保存在imageFileDic:[String:PFFile]
内。
这是我的更新 cellForItemAtIndexPath
:
let collectionCell:SettingsCollectionViewCell =
collectionView.dequeueReusableCellWithReuseIdentifier("collectionCell",
forIndexPath: indexPath) as! SettingsCollectionViewCell
if indexPath.row < imageFileDic.count {
if let imageId = imageFileIds[indexPath.row] as? String {
if let imageData = imageFileDic[imageId]{
collectionCell.collectionViewImage.file = imageData
collectionCell.collectionViewImage.loadInBackground()
}
}
} else{
collectionCell.collectionViewButton.setImage(UIImage(), forState: .Normal)
collectionCell.collectionViewImage.image = UIImage(named: "CameraBild.png")
}
现在有时(1/5次)我的应用程序决定显示两次图像,或者在单元格nr的位置。 4。
在我的查询中,我总是在添加新数据之前删除字典和数组。
有什么想法吗?
编辑:
这是我呼叫的PFQuery
:
let imageQuery = PFQuery(className: "Images")
imageQuery.whereKey("sender", equalTo: objectID!)
imageQuery.addAscendingOrder("createdAt")
imageQuery.cachePolicy = .NetworkElseCache
imageQuery.findObjectsInBackgroundWithBlock { (objects, error) in
if error != nil {
createAlert(error!)
}
else{
if let objects = objects{
self.imageFileDic.removeAll()
self.imageFileIds.removeAll()
for object in objects{
if let id = object.objectId{
print("id found")
if let imageFile = object.objectForKey("imageFile") as? PFFile{
self.imageFileIds.append(id)
self.imageFileDic[id] = imageFile
if object == objects.last{
print(self.imageFileIds.count)
print(self.imageFileDic.count)
self.mainCollectionView.reloadData()
}
}
}
}
}
}
}
}
答案 0 :(得分:1)
我认为您应该将图像更新为主线程
dispatch_async(dispatch_get_main_queue()) {
collectionCell.collectionViewImage.file = imageData
collectionCell.collectionViewImage.loadInBackground()
}