iOS中safe area对scrollView的内容偏移产生的影响(iOS11的适配问题)

scrollview的几个关键属性

contentSize: 就是scrollView可以滚动的区域. 例如 frame = (0,0, 320, 480), contentSize = (320, 960), 代表scrollView可以上下滚动, 滚动区域为frame大小的两倍.

contentOffset 是scrollview当前显示区域顶点相对于frame顶点的偏移量, 比如上一个例子中, 将scrollView拉到最下面, 那么contentOffset = (0, 480), 也就是 y 偏移了480.

contentInset是scrollView中的contentView.frame.originscrollView.frame.origin之间的关系. 例如contentView.frame = (0, 30, 320, 480), 那么contentInset = (0, 30)

iOS11 新加入的属性 adjustedContentInset: 表示scrollView的内容的自适应内边距, 它的取值和contentInsetAdjustmentBehavior枚举属性息息相关, 同时取消vc.automaticallyAdjustsScrollViewInsets属性值.

scrollView关键属性的实践(一)

vc在navigationController中, navigationBar是默认状态, 并且self.automaticallyAdjustsScrollViewInsets = YESscrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;都是使用的默认值.(注意如果当前vc没有在navigationController或者TabbarController中时候, 结果可能不一样, 我们一般讨论的是scrollView在navigationController中的情况)

-(void)viewDidLoad{
    UIScrollView *scrollView = [[UIScrollView alloc] init];
    scrollView.backgroundColor = [UIColor whiteColor];
    [self.view addSubview:scrollView];
    scrollView.frame = self.view.bounds;
    scrollView.contentSize = CGSizeMake(self.view.bounds.size.width, self.view.bounds.size.height * 2);
    self.scrollView = scrollView;

    UIButton *button = [UIButton buttonWithType:UIButtonTypeCustom];
    [scrollView addSubview:button];
    button.frame = CGRectMake(0, 0, 100, 100);
    button.backgroundColor = [UIColor grayColor];
    [button addTarget:self action:@selector(buttonDidClick) forControlEvents:UIControlEventTouchUpInside];
    if (@available(iOS 11.0, *)) {
        scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;
    } else {
        self.automaticallyAdjustsScrollViewInsets = YES;
    }
}
在iOS8上:
2018-09-27 14:49:13.103 scrollViewInVcDemo[56036:1691899] contentInset: {64, 0, 0, 0}
2018-09-27 14:49:13.103 scrollViewInVcDemo[56036:1691899] contentOffset: {0, -64}

在iOS11上:
2018-09-27 14:47:23.731497+0800 scrollViewInVcDemo[55894:1682631] contentInset: {0, 0, 0, 0}
2018-09-27 14:47:23.731605+0800 scrollViewInVcDemo[55894:1682631] contentOffset: {0, -64}
2018-09-27 14:47:23.731708+0800 scrollViewInVcDemo[55894:1682631] safeArea: {64, 0, 0, 0}
2018-09-27 14:47:23.731867+0800 scrollViewInVcDemo[55894:1682631] adjustedContentInset: {64, 0, 0, 0}

最终界面展示是一致的, 正方形的button 位于界面的左上方, navBar下:

image.png

上述代码中, 如果设置self.navigationController.navigationBar.hidden = YES;, 得到的结果如下:

iOS8:
2018-09-27 15:16:04.581 scrollViewInVcDemo[57368:1792003] contentInset: {20, 0, 0, 0}
2018-09-27 15:16:04.581 scrollViewInVcDemo[57368:1792003] contentOffset: {0, -20}

iOS11:
2018-09-27 15:16:56.342570+0800 scrollViewInVcDemo[57444:1799639] contentInset: {0, 0, 0, 0}
2018-09-27 15:16:56.342685+0800 scrollViewInVcDemo[57444:1799639] contentOffset: {0, -20}
2018-09-27 15:16:56.342787+0800 scrollViewInVcDemo[57444:1799639] safeArea: {20, 0, 0, 0}
2018-09-27 15:16:56.342894+0800 scrollViewInVcDemo[57444:1799639] adjustedContentInset: {20, 0, 0, 0}
image.png

可以得出结论:

  1. iOS10以前通过设置self.automaticallyAdjustsScrollViewInsets = YES;可以改变scrollView的contentInset, 从而使得scrollView上的元素不会被navigationBar或者tabbar遮挡.
  2. 在iOS11以后.则通过设置contentInsetAdjustmentBehavior属性来改变adjustedContentInset属性, 来完成相同效果, 同时contentInset属性并未修改.并且automaticallyAdjustsScrollViewInsets属性失效.

scrollView关键属性的实践(二)

如果我们设置如下关键属性:

    self.navigationController.navigationBar.hidden = NO;
    if (@available(iOS 11.0, *)) {
        scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    } else {
        self.automaticallyAdjustsScrollViewInsets = NO;
    }

得到的结论如下:

/**
 iOS 8:
 2018-10-08 16:30:31.331 scrollViewInVcDemo[3018:165133] scrollView: <UIScrollView: 0x7fddcec31390; frame = (0 0; 375 667); clipsToBounds = YES; gestureRecognizers = <NSArray: 0x7fddcec32050>; layer = <CALayer: 0x7fddcec318c0>; contentOffset: {0, 0}; contentSize: {375, 1334}>
 2018-10-08 16:30:31.331 scrollViewInVcDemo[3018:165133] contentInset: {0, 0, 0, 0}
 2018-10-08 16:30:31.332 scrollViewInVcDemo[3018:165133] contentOffset: {0, 0}

 iOS 11:
 2018-10-08 16:36:40.084890+0800 scrollViewInVcDemo[3252:188595] scrollView: <UIScrollView: 0x7ffd2d837000; frame = (0 0; 375 667); clipsToBounds = YES; gestureRecognizers = <NSArray: 0x60000097a8b0>; layer = <CALayer: 0x6000007447a0>; contentOffset: {0, 0}; contentSize: {375, 1334}; adjustedContentInset: {0, 0, 0, 0}>
 2018-10-08 16:36:40.085049+0800 scrollViewInVcDemo[3252:188595] contentInset: {0, 0, 0, 0}
 2018-10-08 16:36:40.085251+0800 scrollViewInVcDemo[3252:188595] contentOffset: {0, 0}
 2018-10-08 16:36:40.085379+0800 scrollViewInVcDemo[3252:188595] safeArea: {64, 0, 0, 0}
 2018-10-08 16:36:40.085521+0800 scrollViewInVcDemo[3252:188595] adjustedContentInset: {0, 0, 0, 0}
 */

两者结果都如下图:

image.png

可以得出结论:

  1. iOS10以前通过设置self.automaticallyAdjustsScrollViewInsets = NO ;与在iOS11以后设置contentInsetAdjustmentBehavior=UIScrollViewContentInsetAdjustmentNever属性是等效的.

  2. contentInsetAdjustmentBehavior=UIScrollViewContentInsetAdjustmentNever属性时候会有如下关系: adjustedContentInset == contentInset

iOS11以后, contentInsetAdjustmentBehavioradjustedContentInset的关系

  1. UIScrollViewContentInsetAdjustmentAutomatic:
    如果scrollview在一个automaticallyAdjustsScrollViewContentInset = YES的controller上,并且这个Controller包含在一个navigationController中,这种情况下会设置在top & bottom上 adjustedContentInset = safeAreaInset + contentInset(不管是否滚动)。其他情况下与UIScrollViewContentInsetAdjustmentScrollableAxes相同.
  2. UIScrollViewContentInsetAdjustmentScrollableAxes:
    在可滚动方向上adjustedContentInset = safeAreaInset + contentInset,在不可滚动方向上adjustedContentInset = contentInset;依赖于scrollEnabled和alwaysBounceHorizontal / vertical = YES,scrollEnabled默认为yes,所以大多数情况下,计算方式还是adjustedContentInset = safeAreaInset + contentInset.
  3. UIScrollViewContentInsetAdjustmentNever:
    adjustedContentInset = contentInset
  4. UIScrollViewContentInsetAdjustmentAlways:
    adjustedContentInset = safeAreaInset + contentInset

iOS中的安全区与additionalSafeAreaInsets

https://www.jianshu.com/p/efbc8619d56b中提到:

在iOS 11以后 Controller的automaticallyAdjustsScrollViewInsets属性被废弃了,所以当tableView超出安全区域时系统自动调整了SafeAreaInsets值,进而影响adjustedContentInset值,在iOS 11中决定tableView的内容与边缘距离的是adjustedContentInset属性,而不是contentInset。adjustedContentInset的计算方式见本文第二部分内容。因为系统对adjustedContentInset值进行了调整,所以导致tableView的内容到边缘的距离发生了变化,导致tableView下移了20pt(statusbar高度)或64pt(navigationbar高度)。

如果你的APP中使用的是自定义的navigationbar,隐藏掉系统的navigationbar,并且tableView的frame为(0,0,SCREEN_WIDTH, SCREEN_HEIGHT)开始,那么系统会自动调整SafeAreaInsets值为(20,0,0,0),如果使用了系统的navigationbar,那么SafeAreaInsets值为(64,0,0,0),如果也使用了系统的tabbar,那么SafeAreaInsets值为(64,0,49,0)。关于什么情况下会发生内容下移的问题,本文第三部分有介绍。

image.png

在iOS7中Apple引入的UIViewController的topLayoutGuidebottomLayoutGuide属性, 他们可以让我们创建约束已避免内容被UIKit的横条, 状态栏, 导航或者标签栏覆盖, 现在在iOS11中全部被被废弃, 并且由安全区替代.

viewController在iOS11中添加了一个新的属性additionalSafeAreaInsets, 通过该属性, 我们可以规定我们自己的safe ares insets, 最终系统根据我们设置的additionalSafeAreaInsets 以及 adjustedContentInset, 系统会计算出最终的 safe area.

注意: 如果viewController是在navigationController中, 那么应该先修改NavigationController的additionalSafeAreaInsets, 然后再改变viewControlleradditionalSafeAreaInsets.

建议仔细读一下下面的参考资料, 腾讯 bugly 写的文章非常棒

参考资料

iOS 11 安全区域适配总结
适配iOS11--contentInsetAdjustmentBehavior

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 203,362评论 5 477
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 85,330评论 2 381
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 150,247评论 0 337
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,560评论 1 273
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,580评论 5 365
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,569评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,929评论 3 395
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,587评论 0 258
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,840评论 1 297
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,596评论 2 321
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,678评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,366评论 4 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,945评论 3 307
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,929评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,165评论 1 259
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 43,271评论 2 349
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,403评论 2 342