アプリでコレクション ビューを使用しています。
これがコードです。
- (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;
}
しかし、コードを実行すると、このようになります。セルが重なっています。
なぜそうなのかはわかりません。また、2 つの行の間の余白が増えることもあります。
すべての画像は静的です。
手伝ってくれてありがとう。