gpt4 book ai didi

objective-c - 将补充标题 View 添加到 UICollectionView 时出错

转载 作者:太空狗 更新时间:2023-10-30 04:02:05 24 4
gpt4 key购买 nike

我在执行补充页眉 View 时遇到以下错误

Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'no UICollectionViewLayoutAttributes instance for -layoutAttributesForSupplementaryElementOfKind: HeaderView at path <NSIndexPath: 0x9e82a40> {length = 2, path = 0 - 0}'

这是创建标题 View 的代码

- (UICollectionReusableView *)collectionView:(UICollectionView *)collectionView viewForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
static NSString * headerIdentifier = @"HeaderView";
UICollectionReusableView *header = [collectionView dequeueReusableSupplementaryViewOfKind:headerIdentifier withReuseIdentifier:UICollectionElementKindSectionHeader forIndexPath:indexPath];
return header;
}

错误发生在 dequeueReusableSupplementaryViewOfKind 方法中。

我在 Collection View Controller 的 initWithCoder 中添加了这两行

UINib *headerNib = [UINib nibWithNibName:@"MTCollectionHeaderView" bundle:nil];
[self.collectionView registerNib:headerNib forSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:@"HeaderView"];

所以它确实有一个对 UI 元素的引用。无论如何我找不到在页眉上设置布局。

我尝试将其添加到同一个 Collection View Controller,但它从未命中此代码,正如我通过将调试器放在那里所确认的那样

- (UICollectionViewLayoutAttributes *)layoutAttributesForSupplementaryElementOfKind:(NSString *)kind atIndexPath:(NSIndexPath *)indexPath
{
return [self.collectionViewLayout layoutAttributesForDecorationViewOfKind:kind atIndexPath:indexPath];
}

有没有人见过这个问题,他们是如何解决的。此外,我正在使用 XCode 5 Developer Preview 5 并为 iOS7 开发

最佳答案

我相信您正在传递补充 View 类型的 headerIdentifier 和 header 标识符的类型常量。尝试按照 collectionView:viewForSupplementaryElementOfKind:atIndexPath: 方法中的这一行代码所示切换它们:

UICollectionReusableView *header = [collectionView dequeueReusableSupplementaryViewOfKind:UICollectionElementKindSectionHeader withReuseIdentifier:headerIdentifier forIndexPath:indexPath];

我也不认为您需要实现 layoutAttributesForSupplementaryElementOfKind:atIndexPath:,将上面的代码行换进去,看看它是否有效。

关于objective-c - 将补充标题 View 添加到 UICollectionView 时出错,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18139707/

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