5

我为 UICollection 视图部分标题创建了一个 UICollectionReusuable 视图。我使用以下代码来实现标题视图。

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath {
ThemeHeader *headerView = [[ThemeHeader alloc] init];
headerView = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader
                                                                 withReuseIdentifier:@"header"
                                                                        forIndexPath:indexPath];
NSString *title = @"Title for the header";
headerView.title.text = title;
return headerView;

}

它崩溃给我以下错误:

-[UICollectionReusableView 标题]:无法识别的选择器发送到实例 0xac846a0'

我的 ThemeHeader 类看起来像这样

@interface ThemeHeader : UICollectionReusableView
@property (strong, nonatomic) IBOutlet UILabel *title;

@end

我提前感谢您的帮助。

4

1 回答 1

7

这意味着headerView不是ThemeHeader您期望的实例,UICollectionReusableView而是没有title属性的实例。

这可能是因为您可能没有ThemeHeader在故事板上的身份检查器中为这个可重用视图设置自定义类。

于 2014-01-03T21:06:27.183 回答