• 设为首页
  • 点击收藏
  • 手机版
    手机扫一扫访问
    迪恩网络手机版
  • 关注官方公众号
    微信扫一扫关注
    公众号

ios - 在 UICollectionView 中每个部分显示两个单元格

[复制链接]
菜鸟教程小白 发表于 2022-12-13 07:18:05 | 显示全部楼层 |阅读模式 打印 上一主题 下一主题

我正在使用 UICollectionView 显示图像,我已经存储在这样的数组中。

newsPhotos = [NSArray arrayWithObjects"photo1.png", @"photo2.png", @"photo3.png", @"photo4.png", @"photo5.png", @"photo6.png", @"photo7.png", @"photo8.png", @"photo9.png", @"photo10.png", Nil];

我的想法是在这个订单上显示网格

1 | 2
3 | 4
5 | 6
7 | 8
9 | 10

所以两张照片,我的 UICollectionView 方法如下所示:

- (NSInteger)collectionViewUICollectionView *)view numberOfItemsInSectionNSInteger)section {

    return 2;
}

- (NSInteger)numberOfSectionsInCollectionView: (UICollectionView *)collectionView {
    return newsPhotos.count;
}

- (UICollectionViewCell *)collectionViewUICollectionView *)cv cellForItemAtIndexPathNSIndexPath *)indexPath {

    Cell *cell = [cv dequeueReusableCellWithReuseIdentifier"Cell" forIndexPath:indexPath];

    UIImageView *recipeImageView = (UIImageView *)[cell viewWithTag:100];
    recipeImageView.image = [UIImage imageNamed:[newsPhotos objectAtIndex:indexPath.section]];

    cell.textLabel.text = @"Data";



    return cell;
}

但它的打印是这样的

1 | 1
2 | 2
3 | 3
etc..

我明白它为什么会发生,只是不知道如何解决它。有什么帮助吗?

谢谢



Best Answer-推荐答案


试试这个。

-(NSInteger)numberOfSectionsInCollectionView:
    (UICollectionView *)collectionView
    {
        return 1;
    }

-(NSInteger)collectionViewUICollectionView *)collectionView
    numberOfItemsInSectionNSInteger)section
{
    return newsPhotos.count;
}



 -(UICollectionViewCell *)collectionViewUICollectionView *)collectionView
                     cellForItemAtIndexPathNSIndexPath *)indexPath
    {

    // Try and use custom cell by placing a custom cell on your collection view,assign a new class to that cell and then configure that cell as

      customCellClass *myCell = [collectionView dequeueReusableCellWithReuseIdentifier"MyCell" forIndexPath:indexPath];

    // also place an image view on your custom cell, make an outlet of that image view in your custom cell class and use:


        myCell.imageview.image = [UIImage imageNamed:[newsPhotos objectAtIndex:indexPath.row]];

        return myCell;
    }

现在要每行显示两个图像,您可以相应地调整单元格和 ImageView 的大小,使其每行仅显示两个图像。 希望对你有帮助

关于ios - 在 UICollectionView 中每个部分显示两个单元格,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22651119/

回复

使用道具 举报

懒得打字嘛,点击右侧快捷回复 【右侧内容,后台自定义】
您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

关注0

粉丝2

帖子830918

发布主题
阅读排行 更多
广告位

扫描微信二维码

查看手机版网站

随时了解更新最新资讯

139-2527-9053

在线客服(服务时间 9:00~18:00)

在线QQ客服
地址:深圳市南山区西丽大学城创智工业园
电邮:jeky_zhao#qq.com
移动电话:139-2527-9053

Powered by 互联科技 X3.4© 2001-2213 极客世界.|Sitemap