Cisco Spark适配iPhone X

iPhone X已经发布有一段时间了,最近我负责把公司的产品Cisco Spark适配iPhone X。虽然还没有采购到iPhone X,但是借助模拟器,勉强把代码改好,让Spark适配iPhone X。我们在产品中,除了启动页面,所有的UI都是用代码来实现的。所以我下面提到的所有内容都是在代码中如何适配iPhone X,不涉及Interface Builder。下面是一些总结,可能无法做到面面俱到,但是相信能解决大部分的iPhone X适配问题。

什么是Safe Area?

iOS11为了解决iPhone X上异形屏的问题,新引入了安全区(Safe Area)。在代码中安全区是通过safeAreaLayoutGuide来表示的。来看看苹果官方怎么定义safeAreaLayoutGuide。

safeAreaLayoutGuide

这里面有些单词不好理解,比如accommodates是什么意思。很容易把人搞混淆。不过如果我们对照这safeAreaInsets的定义来看,就能大概搞清楚safe area是什么来。

safeAreaInsets

简单的总结一下什么是安全区:

1. safeAreaLayoutGuide是UIView的一个属性,类型是UILayoutGuide。UILayoutGuide有一个layoutFrame的属性。说明它是一块方形区域(CGRect)。该方形区域对应的就是Safe Area。那么该方形区域有多大呢?

2. Safe Area避开了导航栏,状态栏,工具栏以及可能遮挡View显示的父View。

    2.1. 对于一个控制器的root view,safe area等于该view的Frame减去各种bar以及additionalSafeAreaInsets剩余的部分。

    2.2. 对于视图层级上除此之外的其他view,safe area对应没有被其他内容(各种bar,additionalSafeAreaInsets)遮挡的部分。比如,如果一个view完全在superview的safe area中,这个view的safe area就是view本身。

3. 根据上面一条,我们在编码的时候,只要针对safe area编程,就不会被各种bar遮挡。

4. 是不是所有view都需要针对safe area编程。其实也不是的,只要控制器View第一层级的subviews是针对safe area编程就可以了。后面层级的subview无需针对safe area编程。因为这种情况下,safe area的大小就是view frame的大小。

5. 如果view不显示或者不在显示层级中,该view的safe area的大小就等于view frame大小。

6. safeAreaLayoutGuide = view.frame - safeAreaInsets。 我们可以通过调整additionalSafeAreaInsets来控制safe area的大小。

如何适配iPhone X

现在已经搞清楚了safe area。那么我们在代码中需要做哪些修改来适配iPhone X呢?我们所有的UI都是用代码来实现的,并且基本上都是通过constraint来实现Auto layout。基本用到3种添加约束的方式。

1. 用的最多的就是VFL(visual format language), 这种方式一行代码可以写出多个约束,所有用的最多。

 customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "V:|-8-[redView]-|", options: [], metrics: nil, views: views))

2. Layout Anchor。这种方式用的也不少。我们主要用来约束view相对其他view的X,Y中心位置.

customConstraints.append(bindToLyraSpaceButton.centerXAnchor.constraint(equalTo: view.centerXAnchor))         customConstraints.append(bindRoomNameLabel.centerXAnchor.constraint(equalTo: view.centerXAnchor))

3. 这种又臭又长的创建NSLayoutConstraint方式,基本上用的比较少。

customConstraints.append(NSLayoutConstraint(item: redView, attribute: .top, relatedBy: .equal, toItem: view attribute: .top, multiplier: 1, constant: 0)

下面来逐个分析这几种添加越苏的方式需要怎么修改。

VFL的适配

比如,一个全屏的view(上下左右都不留margin的那种),我们一般用这种方式来写:

let views: [String: AnyObject] = ["redView" : redView]   

customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "H:|[redView]|", options: [], metrics: nil, views: views))

customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "V:|[redView]|", options: [], metrics: nil, views: views))

NSLayoutConstraint.activate(customConstraints)

对于这种方式创建出来的view,很明显,在iPhone X上是会被刘海遮挡住的。因为VFH添加的约束是针对View而不是上面提到的safe area。这种代码改起来稍微有点痛苦,比如以上的代码需要改成这样,来针对safe area添加约束。             

let safeArea = view.safeAreaLayoutGuide    

redView.leadingAnchor.constraint(equalTo: safeArea.leadingAnchor).isActive = true         redView.trailingAnchor.constraint(equalTo: safeArea.trailingAnchor).isActive = true         redView.topAnchor.constraint(equalTo: safeArea.topAnchor).isActive = true         redView.bottomAnchor.constraint(equalTo: safeArea.bottomAnchor).isActive = true

还有一种情况,全屏的view上下左右留有一定的margin。我们一般这么写:

let views: [String: AnyObject] = ["redView" : redView]   

customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "H:|-16-[redView]-16-|", options: [], metrics: nil, views: views))

customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "V:|-16-[redView]-16-|", options: [], metrics: nil, views: views))

NSLayoutConstraint.activate(customConstraints)

这种情况跟上面的改法一样,只需要指定一下constant值就行了

let safeArea = view.safeAreaLayoutGuide                 

redView.leadingAnchor.constraint(equalTo: safeArea.leadingAnchor, constant: 16).isActive = true     

redView.trailingAnchor.constraint(equalTo: safeArea.trailingAnchor, constant: 16).isActive = true        

redView.topAnchor.constraint(equalTo: safeArea.topAnchor, constant: 16).isActive = true        

redView.bottomAnchor.constraint(equalTo: safeArea.bottomAnchor, constant: 16).isActive = true

如果恰好走狗屎运,你的产品设计的margin值等于系统的默认margin 8,你一般会这么写。反正我们代码里基本margin都是16。这种情况,你无需修改任何代码就可以适配iPhone X。

let views: [String: AnyObject] = ["redView" : redView]   

customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "H:|-[redView]-|", options: [], metrics: nil, views: views))

customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "V:|-[redView]-|", options: [], metrics: nil, views: views))

NSLayoutConstraint.activate(customConstraints)

因为这种情况,你没有修改系统默认的margins,系统会自动给你添加layoutMargins。而layoutMargins已经默认对safe area处理过了。以上代码跟下面的代码是一样的:

let margin = view.layoutMarginsGuide        

view.layoutMargins = UIEdgeInsets(top: 8, left: 8, bottom: 8, right: 8)               

redView.leadingAnchor.constraint(equalTo: margin.leadingAnchor).isActive = true        

redView.trailingAnchor.constraint(equalTo: margin.trailingAnchor).isActive = true        

redView.topAnchor.constraint(equalTo: margin.topAnchor).isActive = true        

redView.bottomAnchor.constraint(equalTo: margin.bottomAnchor).isActive = true

因为layoutMargins已经针对safe area处理过了,所以我们其实可以直接跳过safe area,针对layoutMarginGuide编程来适配iPhone X。比如,如果你的margins是(16,16,16,16),你只需要修改layoutMargins这个属性,其余的代码还跟原来一样用VFL:

let views: [String: AnyObject] = ["redView" : redView]                  customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "H:|-[redView]-|", options: [], metrics: nil, views: views))        

customConstraints.append(contentsOf: NSLayoutConstraint.constraints(withVisualFormat: "V:|-[redView]-|", options: [], metrics: nil, views: views))                 

view.layoutMargins = UIEdgeInsets(top: 16, left: 16, bottom: 16, right: 16)         NSLayoutConstraint.activate(customConstraints)

所以对于VFL,有两种办法来修改你的代码去适配iPhone X。一种是直接针对safe area编程,一种是直接跳过safe area针对layoutMarginsGuide编程。使用前一种,需要写if/else来处理不同的iOS版本,这一点后面会提到。使用后一种,可能代码看起来会有点杂乱。我们用的是前一种。

Layout Anchor的适配

layout Anchor的适配代码比较简单,只需要把view.xxxAnchor改成view.safeAreaLayoutGuide就可以了。

customConstraints.append(bindToLyraSpaceButton.centerXAnchor.constraint(equalTo: view.centerXAnchor))         customConstraints.append(bindRoomNameLabel.centerXAnchor.constraint(equalTo: view.centerXAnchor))

// 改成这样:view ------> view..safeAreaLayoutGuide

customConstraints.append(bindToLyraSpaceButton.centerXAnchor.constraint(equalTo: view.safeAreaLayoutGuide.centerXAnchor))         customConstraints.append(bindRoomNameLabel.centerXAnchor.constraint(equalTo: view.safeAreaLayoutGuide.centerXAnchor))

NSLayoutConstraint方式的适配

这种方式的适配跟上一种一样,也是把view改成safeAreaLayoutGuide就可以了

customConstraints.append(NSLayoutConstraint(item: redView, attribute: .top, relatedBy: .equal, toItem: view, attribute: .top, multiplier: 1, constant: 0))         customConstraints.append(NSLayoutConstraint(item: redView, attribute: .bottom, relatedBy: .equal, toItem: view, attribute: .bottom, multiplier: 1, constant: 0))         customConstraints.append(NSLayoutConstraint(item: redView, attribute: .leading, relatedBy: .equal, toItem: view, attribute: .leading, multiplier: 1, constant: 0))         customConstraints.append(NSLayoutConstraint(item: redView, attribute: .trailing, relatedBy: .equal, toItem: view, attribute: .trailing, multiplier: 1, constant: 0))

// 改成这样:view ------> view..safeAreaLayoutGuide

customConstraints.append(NSLayoutConstraint(item: redView, attribute: .top, relatedBy: .equal, toItem: view.safeAreaLayoutGuide, attribute: .top, multiplier: 1, constant: 0))         customConstraints.append(NSLayoutConstraint(item: redView, attribute: .bottom, relatedBy: .equal, toItem: view.safeAreaLayoutGuide, attribute: .bottom, multiplier: 1, constant: 0))         customConstraints.append(NSLayoutConstraint(item: redView, attribute: .leading, relatedBy: .equal, toItem: view.safeAreaLayoutGuide, attribute: .leading, multiplier: 1, constant: 0))         customConstraints.append(NSLayoutConstraint(item: redView, attribute: .trailing, relatedBy: .equal, toItem: view.safeAreaLayoutGuide, attribute: .trailing, multiplier: 1, constant: 0))

兼容iOS 10 和 iOS 11

safeAreaLayoutGuide和safeAreaInsets这两个属性都是iOS 11新加入的。所以如果你的App需要兼容iOS 9和iOS 10,要写很多这样的判断代码

if #available(iOS 11.0, *) {             return safeAreaLayoutGuide         }

为了避免在代码中到处写这种判断代码,我们对对UIView进行了扩展。具体方式如下:

首先定义一个UILayoutGuideProtocol,让UIView和UILayoutGuide都实现这个protocol。


UILayoutGuideProtocol

然后扩展UIView,给它添加一个safeLayoutGuide的属性,这个属性是这样实现的:


UIView extension

在使用的地方,需要调用view.safeAreaLayoutGuide的地方,改为调用view.safeLayoutGuide。这样就不需要写if/else了。

UITableView和UICollectionView

UITableView比较特殊,系统已经帮你出里过safe area。切记,在你的UITableViewCell中,所以的view都要添加到contentView。否则你的内容会被遮盖。

override init(style: UITableViewCellStyle, reuseIdentifier: String?) {        

    super.init(style: style, reuseIdentifier: reuseIdentifier)                 

    contentView.addSubview(label)

    //addSubview(label)   //这种方式是有问题的

}

很不幸,UICollectionView不是自适应的,系统没有帮你处理iPhone X。即使你所有的view都添加到contenView中,你的内容依然会被遮盖。所有,对于CollectionView, 你必须像处理Label,button那样,用前面提到的的方式针对safe area编程。

(第一次发技术文章,水平有限,如果大家看了有问题,请指出来。)

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

推荐阅读更多精彩内容