集合查看单元格重叠

时间:2013-09-10 16:45:29

标签: iphone ios image uicollectionview

我在我的应用中使用了收藏夹视图。

这是代码。

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


    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:kCellReuseIdentifier forIndexPath:indexPath];

    UIImageView *image = (UIImageView *)[cell viewWithTag:100];

    image.image = [UIImage imageNamed:[NSString stringWithFormat:@"%d.png",indexPath.row+1]];

    UILabel *lbl = (UILabel *)[cell viewWithTag:101];
    lbl.text = [arrCategory objectAtIndex:indexPath.row];


    return cell;
}

但是当我运行代码时,我会这样。细胞重叠。

enter image description here

我不知道为什么会这样。还有一段时间它显示了两行之间的更多余量。

所有图像都是静态的。

感谢您的帮助。

0 个答案:

没有答案