gpt4 book ai didi

ios - Collection View 中的第二部分未显示

转载 作者:行者123 更新时间:2023-11-28 19:59:44 24 4
gpt4 key购买 nike

我有两个数组:

  • feedbackImages - 一组 UIImages
  • feedbackVideos - 包含两个键的字典数组,视频 url 和缩略图。

我遇到的问题是第二部分(反馈视频)的所有单元格都没有显示。我目前正在为每个单元格使用一个图像来尝试让它工作。

当记录数组的计数时,它们都显示它们中有项目。

这是我的收藏 View 代码:

#pragma mark - Collection View

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

- (NSInteger)collectionView:(UICollectionView *)view numberOfItemsInSection:(NSInteger)section
{
if (section == 1)
{
return [self.feedbackImages count];
}
else if (section ==2 )
{
return [self.feedbackVideos count];
}
return 0;
}

- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
ImageCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"Cell" forIndexPath:indexPath];

UIImage *image = [[UIImage alloc] init];

image = [UIImage imageNamed:@"86-camera.png"];

cell.ImageView.image = image;

return cell;
}

我是不是漏掉了什么?

最佳答案

部分以索引 0 而不是 1 开始,将 collectionView:numberOfItemsInSection 更改为:

if (section == 0) //<- change to 0
{
return [self.feedbackImages count];
}
else if (section ==1 ) //<- change to 1
{
return [self.feedbackVideos count];
}

关于ios - Collection View 中的第二部分未显示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24760372/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com