gpt4 book ai didi

ios - Collection View Controller 没有用于从属性读取的 getter 方法

转载 作者:行者123 更新时间:2023-12-01 19:03:53 26 4
gpt4 key购买 nike

我正在关注有关使用 Collection View Controller 的教程,但我被困在最后一点。

-(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编程的新手,所以请考虑一下

谢谢

最佳答案

ImageView应该是 imageView (小写“i”)在您的属性(property)声明中。

关于ios - Collection View Controller 没有用于从属性读取的 getter 方法,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21077113/

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