当前位置:   article > 正文

iOS开发--UICollectionView横竖屏旋转的适配_ios 旋转屏幕适配collectionview

ios 旋转屏幕适配collectionview

说在前面
最近针对公司项目进行了iPad的适配,发现了很多有关屏幕旋转的适配,发现了一些有趣的问题.

1.UICollectionView的itemsize的旋转自适应

UIcollectionView在屏幕旋转的过程中,没有进行自动适配,也就是旋转的过程中,collectionView的UIcollectionViewDelegateFlowLayout并没有重新出发调用.

解决方案:页面添加屏幕旋转通知,判断有效旋转后,刷新页面,调用invalidateLayout.

代码附上:

刷新

extension UIcollectionView {
	// 刷新数据
    func safeReloadData() {
        CATransaction.begin()
        CATransaction.setDisableActions(true)
        self.reloadData()
        CATransaction.commit()
    }
    // 重新布局
    func safeLayoutInvalidateLayout() {
        CATransaction.begin()
        CATransaction.setDisableActions(true)
        self.collectionViewLayout.invalidateLayout()
        CATransaction.commit()
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16

屏幕旋转

下面是基于BaseView写的,其中判断,项目需求,只有iPad支持倒屏状态.

使用

子类中,需要屏幕旋转的,设置isOpenDeviceOrientationObserver为YES就行,子类实现ktx_deviceOrientationDidChange方法即可

注意:

代码中,判断的是有效屏幕的旋转,也就是横屏和竖屏的旋转,对平放等不做考虑,如果你的项目需要,则另行修改.

#import <UIKit/UIKit.h>

NS_ASSUME_NONNULL_BEGIN

@interface TTBaseView : UIView
/// 开启屏幕旋转通知
@property (nonatomic, assign) BOOL isOpenDeviceOrientationObserver;

// 屏幕旋转
- (void)ktx_deviceOrientationDidChange;
@end

NS_ASSUME_NONNULL_END



#import "TTBaseView.h"
#import "UIDevice+TTDevice.h"

@interface TTBaseView()
// 是不是水平
@property (nonatomic, assign) BOOL reocrdIsLaunch;

@end

@implementation TTBaseView

@synthesize isOpenDeviceOrientationObserver = _isOpenDeviceOrientationObserver;

- (instancetype)init {
    if (self = [super init]) {
        UIDevice *device = [UIDevice currentDevice] ;
        self.reocrdIsLaunch = (device.orientation == UIDeviceOrientationLandscapeLeft) || (device.orientation == UIDeviceOrientationLandscapeRight);
    }
    return self;
}

- (void)awakeFromNib {
    [super awakeFromNib];
    UIDevice *device = [UIDevice currentDevice] ;
    self.reocrdIsLaunch = (device.orientation == UIDeviceOrientationLandscapeLeft) || (device.orientation == UIDeviceOrientationLandscapeRight);
}

- (void)dealloc {
    [self setIsOpenDeviceOrientationObserver:NO];
}

- (void)setIsOpenDeviceOrientationObserver:(BOOL)isOpenDeviceOrientationObserver {
    BOOL oldValue = self.isOpenDeviceOrientationObserver;
    
    if (oldValue == isOpenDeviceOrientationObserver) {
        return;
    }
    
    _isOpenDeviceOrientationObserver = isOpenDeviceOrientationObserver;
    
    if (_isOpenDeviceOrientationObserver) {
        [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(deviceOrientationDidChange) name:UIDeviceOrientationDidChangeNotification object:nil];
    } else {
        [[NSNotificationCenter defaultCenter] removeObserver:self name:UIDeviceOrientationDidChangeNotification object:nil];
    }
}

- (void)deviceOrientationDidChange {
    //1.获取 当前设备 实例
    UIDevice *device = [UIDevice currentDevice] ;
    BOOL is_need_update= NO;
    
    switch (device.orientation) {
        case UIDeviceOrientationPortraitUpsideDown:
            if (![UIDevice isPad]) {
                break;
            }
        case UIDeviceOrientationPortrait:
            if (self.reocrdIsLaunch) {
                is_need_update = YES;
                self.reocrdIsLaunch = NO;
            }
            break;
        case UIDeviceOrientationLandscapeLeft:
        case UIDeviceOrientationLandscapeRight:
            if (!self.reocrdIsLaunch) {
                is_need_update = YES;
                self.reocrdIsLaunch = YES;
            }
            break;
        default:
            //            NSLog(@"无法辨识");
            break;
    }
    
    if (is_need_update) {
        [self ktx_deviceOrientationDidChange];
    }
}

- (void)ktx_deviceOrientationDidChange {
    
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83
  • 84
  • 85
  • 86
  • 87
  • 88
  • 89
  • 90
  • 91
  • 92
  • 93
  • 94
  • 95
  • 96
  • 97
  • 98
  • 99

2.UICollectionView的旋转size计算不准确的问题

这个问题其实比较常见,这个也是屏幕旋转的的问题.

问题

涉及到屏幕旋转,有关UICollectionView的itemsize的计算,获取到的数值会不准确,会受到屏幕旋转的延迟影响,也就是说,当页面已经转过来后,itemsize的获取还是原屏幕状态的值.

姿势

有关UICollectionView的itemsize的计算, 不要取collectionView.width or self.view,

解决

获取当前屏幕的宽度或者高度,:[[UIApplication sharedApplication].delegate window].width

ps:直接写出来.width or .height 自己写个view的分类

3.关于UICollectionView和UITableView的区别

UITableView是属于列表类型,所以,默认的宽度是根据屏幕进行自动适配的,高度不会,所以针对cell的子元素的换行的高度还需要特殊处理.
上面提到的屏幕旋转的问题,基本上也同样适用于UITableView.

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/IT小白/article/detail/382032
推荐阅读
相关标签
  

闽ICP备14008679号