UICollectionView使用不同高度的单元格

时间:2013-10-22 14:00:12

标签: ios objective-c uicollectionview

所以我有一个集合视图控制器,它有3个单元格,因为每个单元格都有不同的布局。我的图片显示了这个:

enter image description here

它们都有不同的单元格标识符,因此在我的cellForItemAtIndexPath函数中,我可以创建特定的单元格,如:

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath {
UICollectionViewCell *cell;


    if(indexPath.row == 0)
    {
        static NSString *identifier = @"Cell1";
        cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier     forIndexPath:indexPath];
        [cell setNeedsLayout];
    }
    else if(indexPath.row == 1)
    {
        static NSString *identifier = @"Cell2";
        cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
        [cell setNeedsLayout];
    }
    else
    {
        static NSString *identifier = @"Cell3";
        cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
        [cell setNeedsLayout];
    }

    return cell;
}

但是当我模拟它时,所有细胞的大小都相同:

enter image description here

有没有办法强制单元格达到我定义的尺寸,或者有更合适的方法吗?

1 个答案:

答案 0 :(得分:13)

试试这个:Custom layout for different cell sizes in UICollectionView

或使用此方法:

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