无法加载集合视图单元格

时间:2015-04-21 10:27:37

标签: ios objective-c iphone uicollectionview

我可以加载集合视图但无法加载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;
}

1 个答案:

答案 0 :(得分:0)

您的代码似乎没有什么特别的错误。

在集合视图中加载单元格需要比单一方法更多的工作。

我会开始进一步解释,但我只是在阅读你的文档。相反,请自行阅读Apple文档。

https://developer.apple.com/library/ios/documentation/UIKit/Reference/UICollectionView_class/index.html#//apple_ref/doc/uid/TP40012177-CH1-SW4