ios - Property 'label' not found on object of type
黄舟
黄舟 2017-04-17 15:16:55
0
2
859

1,这是一个collection view的简单程序。每个cell包含一个label显示一个1-200的数字
2,定义了一个CollectionViewCell类,一个继承它的GridCell类。
3,storyboard中,cell的类为GridCell,identifier为GridCell
4, label是GridCell的属性,用来显示数字
CollectionViewController的以下方法中,总是报错,找不到celllabel属性:

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

    NSNumber *number = numbers[indexPath.row];

    cell.label.text= [number description]; //这句报错,Property 'label' not found on object of type'UICollectionViewCell'

    return cell;
}
黄舟
黄舟

人生最曼妙的风景,竟是内心的淡定与从容!

membalas semua(2)
洪涛
 UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"GridCell" forIndexPath:indexPath];

问题在这一句,你用父类声明的,怎么能调用到子类的属性
按你描述,应该用GridCell声明

迷茫

原因是 cell应该是GridCell,放在这里供大家参考吧。

有没有提供ios开发这种实习的岗位的?

Muat turun terkini
Lagi>
kesan web
Kod sumber laman web
Bahan laman web
Templat hujung hadapan
Tentang kita Penafian Sitemap
Laman web PHP Cina:Latihan PHP dalam talian kebajikan awam,Bantu pelajar PHP berkembang dengan cepat!