我正在使用来自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) {
}];
}
}