HTML5   发布时间:2022-04-27  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了ios – UICollectionView布局更新 – 项目大小不变大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我遇到了collectionView项目大小的问题.我想在纵向模式中显示3个项目,在横向模式下显示6个项目.我已经设置了像这样的-layoutSubviews:
- (void)layoutSubviews {
    [super layoutSubviews];

    if ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationPorTrait || ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationPorTraitUpsideDown)) {
        //PorTrait orientation
        self.flowLayoutPorTrait.itemSize = CGSizeMake(106,106);

    } else if ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeLeft || ([[UIApplication sharedApplication] statusBarOrientation] == UIInterfaceOrientationLandscapeRight)) {
        //Landscape orientation
        self.flowLayoutPorTrait.itemSize = CGSizeMake(93,93);
    }
    [self.collectionView.collectionViewLayout invalidateLayout];
}

但是单元格大小不会更新,它对于两个方向始终保持不变.
如果我创建2个flowLayouts并使用:

[self.collectionView setCollectionViewLayout:self.flowLayoutLandscape];

一切正常,但我真的不喜欢它们是如何改变的.动画真的很糟糕.
而且因为itemSize是唯一需要更新的属性,所以使用1布局似乎是最佳选择.

如何告诉collectionView更新布局?

解决方法

我使用这种方法,这对我来说非常好:
- (CGSizE)collectionView:(UICollectionView *)collectionView layout:(UICollectionViewLayout *)collectionViewLayout sizeForItemATindexPath:(NSIndexPath *)indexPath
{
    if (_isLandscapE)
        return CGSizeMake(yourLandscapeWidth,yourLandscapeHeight);
    else
        return CGSizeMake(yourNonLandscapeWidth,yourNonLandscapeHeight);
}

大佬总结

以上是大佬教程为你收集整理的ios – UICollectionView布局更新 – 项目大小不变全部内容,希望文章能够帮你解决ios – UICollectionView布局更新 – 项目大小不变所遇到的程序开发问题。

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

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。