我正在尝试将数组中的图像资源分配到集合视图中。有一条线我正在努力。有没有人对我做错了什么?问题在于细胞项目。我的代码是:
override func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
var cell = collectionView.dequeueReusableCellWithReuseIdentifier("MyCell", forIndexPath: indexPath) as CollectionViewCell
println("just seeing when this prints")
println(self.matchedSelfie)
cell.match.image = self.matchedSelfie
return cell
问题在于cell.match.image = self.matchedSelfie
答案 0 :(得分:0)
您可以使用以下方式获取正确的图像:
cell.match.image = self.matchedSelfie[indexPath.row]
假设阵列中图像的顺序与单元格的顺序相同。