0

我正在尝试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()
                            }

                        }
                    }

                }
            }
        }
    }

}
4

1 回答 1

1

我认为您应该将图像更新到主线程

dispatch_async(dispatch_get_main_queue()) { 
        collectionCell.collectionViewImage.file = imageData
        collectionCell.collectionViewImage.loadInBackground()
    }
于 2016-09-01T11:15:29.047 回答