3

我正在使用来自https://github.com/jamztang/CSStickyHeaderFlowLayout的 CSStickyHeaderFlowLayout

作为我的应用程序的一部分,我在标题视图/单元格中有一个按钮,该按钮发送到它需要增长的集合视图。反过来,集合视图会更改 CSStickyHeaderFlowLayout 中的标头首选大小,并将 invalidateLayout 发送到 CSStickyHeaderFlowLayout。尝试通过动画块设置动画效果不佳,因为它将标题从按钮移动到顶部。这真的很奇怪。有没有办法让 flowLayout 正确地为补充视图中的变化设置动画?

这是我更改大小的代码。

- (void)treckDetailMapCellSizeToggle:(BOOL)toggle {
    //Modifier l'attribu de la map et invalider le layout pour le redessiner.
    CSStickyHeaderFlowLayout *layout = (id)self.collectionViewLayout;
    if ([layout isKindOfClass:[CSStickyHeaderFlowLayout class]]) {
        [UIView animateWithDuration:0.5 animations: ^{
            if (isMapCellExpended) {
                isMapCellExpended = NO;
                layout.parallaxHeaderReferenceSize = CGSizeMake(self.view.frame.size.width, HEADER_VIEW_PREFERED_SIZE);
            }
            else {
                isMapCellExpended = YES;
                layout.parallaxHeaderReferenceSize = CGSizeMake(self.view.frame.size.width, HEADER_VIEW_MAX_SIZE);
            }

            [layout invalidateLayout];
        }];
    }
}

这是一段视频,我点击了名为“Ajouter a la carte”的按钮。

https://www.youtube.com/watch?v=aqm99HebvwE

编辑:

感谢阅读此页面(我以前从未见过)。我发现这会使它变得更好,但不能解决问题。:

- (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath {
    CSStickyHeaderFlowLayout *layout = (id)self.collectionViewLayout;

    if ([layout isKindOfClass:[CSStickyHeaderFlowLayout class]]) {
        [self.collectionView performBatchUpdates: ^{
            preferedSize = preferedSize == 200 ? 300 : 200;
            layout.parallaxHeaderReferenceSize = CGSizeMake(self.view.frame.size.width, preferedSize);
        } completion: ^(BOOL finished) {
        }];

    }
}
4

2 回答 2

2

为尺寸变化设置动画会使视图动画闭包中的布局无效。大小本身应通过适当的布局委托方法设置,例如 collectionView(collectionView:collectionViewLayout:referenceSizeForHeaderInSection:)

UIView.animate(withDuration: 0.33) {
  self.collectionView.collectionViewLayout.invalidateLayout()
}
于 2019-05-14T20:14:22.137 回答
0

而不是自己尝试为更改设置动画,您应该调用

[collectionView.collectionViewLayout invalidateLayout];

UICollectionView 无法折叠或移除补充视图

于 2015-07-14T06:45:06.533 回答