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

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;
}
黄舟
黄舟

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

모든 응답(2)
洪涛

으아악

문제는 이 문장에서 부모 클래스와 함께 선언하는데, 하위 클래스의 속성을 어떻게 호출할 수 있는지입니다.
설명에 따르면 GridCell을 선언해야 합니다

迷茫

이유는 cellGridCell이어야 하므로 참고용으로 넣어두겠습니다.

iOS 개발을 위한 인턴십 자리가 있나요?

최신 다운로드
더>
웹 효과
웹사이트 소스 코드
웹사이트 자료
프론트엔드 템플릿