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

Can't assign images from an array into a collection view

我正在尝试将数组中的图像资源分配到集合视图中。我正在努力解决一条线。有人对我做错了什么有建议吗?问题出在单元格项上。我的代码是:

         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

您可以使用以下方法获得正确的图像:

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

假设数组中图像的顺序与单元格的顺序相同。