在ios的uicollectionview中的不同Cell大小

时间:2014-11-07 13:32:16

标签: ios uicollectionview uicollectionviewcell uicollectionviewlayout

我已经使用大小相同的UICollectionView将图像显示为网格视图,如下所示 enter image description here

下一步我想将单元格显示为不同的大小,但图像适合这个单元格 enter image description here 这需要在故事板中工作,因为在故事板中完成了其他功能,所以有人帮助我..

1 个答案:

答案 0 :(得分:0)

在您的集合视图控制器中添加:

- (CGSize)collectionView:(UICollectionView *)collectionView 
                  layout:(UICollectionViewLayout*)collectionViewLayout 
  sizeForItemAtIndexPath:(NSIndexPath *)indexPath{

   //return the size of the cell based on image size or other criteria
}

为图像添加约束:

enter image description here