iOS11 打开系统相册 导航栏透明 且列表的frame也不对

来源:互联网 发布:苹果扫描软件下载 编辑:程序博客网 时间:2024/05/29 15:49


原因应该是全局设置了UIScrollView.appearance.contentInsetAdjustmentBehavior,导致系统相册出现的问题
if (@available(iOS 11, *)) {

    UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;}

在进入的时候
if (@available(iOS 11, *)) {

    UIScrollView.appearance.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;}

在选择照片或退出时候
if (@available(iOS 11, *)) {

    [UIScrollView appearance].contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever; //iOS11 解决SafeArea的问题,同时能解决pop时上级页面scrollView抖动的问题}


阅读全文
0 0
原创粉丝点击