CollecitonView не всегда правильно отображает данные
Я пытаюсь реализовать UICollectionView
с пользовательскими ячейками. Настройка следующая:
- 4 ячейки
- Если я получу данные загруженного изображения =>, заполните imageView ячейки этим изображением.
- иначе: используйте заполнитель.
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()
}
}
}
}
}
}
}
}
1 ответ
Я думаю, вы должны обновить изображение в основной теме
dispatch_async(dispatch_get_main_queue()) {
collectionCell.collectionViewImage.file = imageData
collectionCell.collectionViewImage.loadInBackground()
}