gpt4 book ai didi

ios - 部分标题的 UICollectionReusableView 不起作用

转载 作者:可可西里 更新时间:2023-11-01 04:30:09 27 4
gpt4 key购买 nike

我为 UICollecton View 部分标题创建了一个 UICollectionReusuable View 。我使用以下代码实现 header View 。

- (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

在此先感谢您的帮助。

最佳答案

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

这可能是因为您可能没有将 ThemeHeader 设置为 Storyboard上身份检查器中此可重用 View 的自定义类。

关于ios - 部分标题的 UICollectionReusableView 不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20912144/

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