集合视图控制器没有用于从属性读取的getter方法

时间:2014-01-12 16:24:16

标签: ios collectionview

我正在学习使用集合视图控制器的教程,并且我被困在最后一点。

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView
                 cellForItemAtIndexPath:(NSIndexPath *)indexPath
{
    MainMenuItemViewCell *myCell = [collectionView
                                    dequeueReusableCellWithReuseIdentifier:@"MainMenuItemCell"
                                    forIndexPath:indexPath];

    UIImage *image;
    int row = [indexPath row];

    image = [UIImage imageNamed:_carImages[row]];

    myCell.imageView.image = image;

    return myCell;
}

myCell.imageView.image = image;行上我收到错误“没有getter方法来读取属性”

这是MainMenuItemViewCell.h

@interface MainMenuItemViewCell : UICollectionViewCell
@property (strong, nonatomic) IBOutlet UIImageView *ImageView;
@end

我确信这是愚蠢的。我是iOS编程的新手,所以请考虑一下

THX

1 个答案:

答案 0 :(得分:3)

您的财产声明中

ImageView应为imageView(小写'i')。