我正在学习使用集合视图控制器的教程,并且我被困在最后一点。
-(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
答案 0 :(得分:3)
ImageView
应为imageView
(小写'i')。