ios – layoutAttributesForSupplementaryViewOfKind未调用

ios – layoutAttributesForSupplementaryViewOfKind未调用,第1张

概述我正在为UICollectionView编写自定义流布局. 我可以看到并滚动细胞. 问题是我无法显示节标题的补充视图. 所以, - (UICollectionViewLayoutAttributes *) layoutAttributesForSupplementaryViewOfKind:(NSString *)kind atIndexPath:(NSIndexPath 我正在为UICollectionVIEw编写自定义流布局.
我可以看到并滚动细胞.

问题是我无法显示节标题的补充视图.

所以,

- (UICollectionVIEwLayoutAttributes *)      layoutAttributesForSupplementaryVIEwOfKind:(Nsstring *)kind       atIndexPath:(NSIndexPath *)indexPath

永远不会被召唤.

在数据源中这种方法:

- (UICollectionReusableVIEw *)      collectionVIEw:(UICollectionVIEw *)collectionVIEw       vIEwForSupplementaryElementOfKind:(Nsstring *)kind       atIndexPath:(NSIndexPath *)indexPath

也永远不会被召唤.

我怎样才能这样调用这些方法呢?

编辑:
这是layoutAttributesForElementsInRect:

- (NSArray *)layoutAttributesForElementsInRect:(CGRect)rect {    NSMutableArray * attributes = [NSMutableArray arrayWithCapacity:[[self.layoutInfo allKeys] count]];    for(NSIndexPath * indexPath in self.layoutInfo) {        UICollectionVIEwLayoutAttributes *itemAttributes = [self.layoutInfo objectForKey:indexPath];        if(CGRectIntersectsRect(rect,itemAttributes.frame)) {            [attributes addobject:itemAttributes];        }    }    return attributes;}

因此即使这样,也不会调用补充视图的两种方法.

解决方法 您需要实现 layoutAttributesForElementsInRect:以返回每个补充视图的属性实例(除了每个单元格):

Subclasses must overrIDe this method and use it to return layout information for all items whose vIEw intersects the specifIEd rectangle. Your implementation should return attributes for all visual elements,including cells,supplementary vIEws,and decoration vIEws.

总结

以上是内存溢出为你收集整理的ios – layoutAttributesForSupplementaryViewOfKind未调用全部内容,希望文章能够帮你解决ios – layoutAttributesForSupplementaryViewOfKind未调用所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1094894.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-28
下一篇 2022-05-28

发表评论

登录后才能评论

评论列表(0条)

保存