UICollectionViewCell图像没有自定义类

时间:2016-12-13 23:30:17

标签: ios xcode uiimageview uicollectionview uicollectionviewcell

实际上有一个非常简单的问题: 我想要一个带有与Cell相同大小的Image的collectionView。我想在没有建立额外课程的情况下完成这一切,所以从故事板(也许,如果我进入我的子视图?!)

顺便说一下,我从网上加载数据,所以我不能每次都添加新的ImageView ....

只想问这是否可能?!

干杯

1 个答案:

答案 0 :(得分:1)

如果您有静态Collection视图,那么您可以不使用自定义类 但是你有动态的Collection视图,那么你需要创建自定义类。 这看起来像这样。

class AddAlbumCell: UICollectionViewCell {

    @IBOutlet var imgv: UIImageView!
}

在“收藏”视图中委派方法

func collectionView(collectionView: UICollectionView, cellForItemAtIndexPath indexPath: NSIndexPath) -> UICollectionViewCell {
      let cell = collectionView.dequeueReusableCellWithReuseIdentifier("Cell", forIndexPath: indexPath) as! AddAlbumCell
      cell.imgv.image = images[indexPath.row] //"images" contains image name array
      return cell;
}