gpt4 book ai didi

ios - UICollectionView 使用自定义动画更改布局

转载 作者:塔克拉玛干 更新时间:2023-11-02 09:59:18 25 4
gpt4 key购买 nike

我有两个 collectionViewLayout,verticalFlowLayout 和 fullScreenHorizo​​ntalFlowLayout。

@implementation VerticalFlowLayout
- (instancetype)init
{
if (self = [super init]) {
self.sectionInset = UIEdgeInsetsMake(12, 0, 0, 0);
self.minimumLineSpacing = 10;
self.minimumInteritemSpacing = 0;
self.itemSize = CGSizeMake(CGRectGetWidth([UIScreen mainScreen].bounds), 244);
}
return self;
}
@end

@implementation FullScreenFlowLayout
- (instancetype)init
{
if (self = [super init]) {
self.sectionInset = UIEdgeInsetsMake(0, 0, 0, 0);
self.minimumLineSpacing = 10;
self.minimumInteritemSpacing = 0;
self.itemSize = CGSizeMake(CGRectGetWidth([UIScreen mainScreen].bounds), CGRectGetHeight([UIScreen mainScreen].bounds));
self.scrollDirection = UICollectionViewScrollDirectionHorizontal;
}
return self;
}

当我选择一个单元格时,我想使用自定义动画 更改 collectionView 布局。默认动画是一个线性动画,持续时间为 0.33。

    - (void)collectionView:(UICollectionView *)collectionView didSelectItemAtIndexPath:(NSIndexPath *)indexPath
{
if ([_collectionView.collectionViewLayout isKindOfClass:[FullScreenFlowLayout class]]) {
VerticalFlowLayout *flowLayout = [VerticalFlowLayout new];
[_collectionView setCollectionViewLayout:flowLayout animated:YES completion:^(BOOL finished) {

}];
}
else
[_collectionView setCollectionViewLayout:[FullScreenFlowLayout new] animated:YES];

}

我该怎么做?

最佳答案

只需将 _collectionView.collectionViewFlowLayout = flowLayout 包裹在 UIView 动画 block 中即可。

[UIView animateWithDuration:5.0 delay:0.0 options:UIViewAnimationOptionCurveEaseIn animations:^{
self.collectionView.collectionViewLayout = flowLayout;
} completion:^(BOOL finished) {
if (finished) {
// Do Something
}
}];

关于ios - UICollectionView 使用自定义动画更改布局,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33454151/

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