我可以加载集合视图但无法加载cell.below是我正在使用的代码。
- (UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
static NSString *identifier = @"reuseCell";
[self.view_dashboard registerClass:[UICollectionViewCell class]
forCellWithReuseIdentifier:@"reuseCell"];
UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];
recipeImageView = (UIImageView *)[cell viewWithTag:100];
recipeImageView.image= [UIImage imageNamed:[dashBoard_img objectAtIndex:indexPath.row]];
return cell;
}
答案 0 :(得分:0)
您的代码似乎没有什么特别的错误。
在集合视图中加载单元格需要比单一方法更多的工作。
我会开始进一步解释,但我只是在阅读你的文档。相反,请自行阅读Apple文档。