无法将数组中的图像分配到集合视图中

时间:2015-02-12 01:51:42

标签: arrays image swift uicollectionview

我正在尝试将数组中的图像资源分配到集合视图中。有一条线我正在努力。有没有人对我做错了什么?问题在于细胞项目。我的代码是:

         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

1 个答案:

答案 0 :(得分:0)

您可以使用以下方式获取正确的图像:

cell.match.image = self.matchedSelfie[indexPath.row]

假设阵列中图像的顺序与单元格的顺序相同。