搜尋

首頁  >  問答  >  主體

ios - Property 'label' not found on object of type

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;
}
黄舟黄舟2841 天前912

全部回覆(2)我來回復

  • PHP中文网

    PHP中文网2017-04-17 15:18:55

     UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:@"GridCell" forIndexPath:indexPath];
    

    問題在這一句,你用父類別宣告的,怎麼能呼叫到子類別的屬性
    按你描述,應該用GridCell聲明

    回覆
    0
  • 迷茫

    迷茫2017-04-17 15:18:55

    原因是 cell應該是GridCell,放在這裡供大家參考吧。

    有沒有提供ios開發這種實習的職位的?

    回覆
    0
  • 取消回覆