导航栏变化
高度变化
在iOS11中导航栏多了一个LargeTitleView
,专门专门显示大字标题。该LargeTitleView
的高度为52p。
- iPhoneX之前的机型,默认高度64p,如果显示大字标题,总高度为20+44+52=116p
- iPhoneX,statusbar=44,默认高度88p,如果显示大字标题,总高度为44+44+52=140p
iPhoneX底部还多了一个半角的矩形,使得tabbar多出来了34p的高度
控制大标题的显示
在UINavigationBar
中新增了一个BOOL属性prefersLargeTitles
,将该属性设置为ture
,NavigationBar
就会在整个APP中显示大标题,如果想要在控制不同页面大标题的显示,可以通过设置当前页面的navigationItem
的largeTitleDisplayMode
属性;
navigationItem.largeTitleDisplayMode
typedef NS_ENUM(NSInteger, UINavigationItemLargeTitleDisplayMode) {
/// 自动模式,依赖上一个 item 的特性
UINavigationItemLargeTitleDisplayModeAutomatic,
/// 针对当前 item 总是启用大标题特性
UINavigationItemLargeTitleDisplayModeAlways,
/// Never 不启用大标题特性
UINavigationItemLargeTitleDisplayModeNever,
}
导航栏内视图边距变化
在iOS11系统中
- 设置了
TitleView
:-
iPhone6P
以上:左右边距为12pt
-
iPhone6P
以下:左右边距为8pt
-
- 设置了左右
navigationBarButton
:-
iPhone6P
以上:左右边距为20pt
-
iPhone6P
以下:左右边距为16pt
-
- 同时设置了
TitleView
和navigationBarButton
:-
iPhone6P
以上:navigationBarButton
的左右边距为20pt
,navigationBarButton
与TitleView
间距为0pt
-
iPhone6P
以下:navigationBarButton
的左右边距为16pt
,navigationBarButton
与TitleView
间距为0pt
-
automaticallyAdjustsScrollViewInsets 属性
iOS 11 后 UIViewController
的属性 automaticallyAdjustsScrollViewInsets
,变为了 UIScrollView's contentInsetAdjustmentBehavior
。如果发现界面无意中位置偏移了,很可能是这个属性导致的。
if (@available(iOS 11.0, *)) {
[UIScrollView appearance].contentInsetAdjustmentBehavior =UIScrollViewContentInsetAdjustmentNever;
//iOS11 解决SafeArea的问题,同时能解决pop时上级页面scrollView抖动的问题
} else {
self.automaticallyAdjustsScrollViewInsets = NO;
}
TableViews :在iOS 11中默认启用Self-Sizing
在iOS11中,默认开启了Self-Sizing
估算行高机制,我们可以通过实现estimatedRowHeight
相关的属性来展示动态的内容,实现了estimatedRowHeight
属性后,得到的初始contenSize
是个估算值,是通过estimatedRowHeight
* cell
的个数得到的,并不是最终的contenSize
,tableView
不会一次性计算所有的cell
的高度了,只会计算当前屏幕能够显示的cell
个数再加上几个,滑动时,tableView
不停地得到新的cell
,更新自己的contenSize
,在滑到最后的时候,会得到正确的contenSize
。
Self-Sizing
在iOS11下是默认开启的,Headers
,footers
, and cells
都默认开启Self-Sizing
,所有estimated
高度默认值从iOS11
之前的 0 改变为UITableViewAutomaticDimension
:
@property (nonatomic) CGFloat estimatedRowHeight NS_AVAILABLE_IOS(7_0);
// default is UITableViewAutomaticDimension, set to 0 to disable
如果目前项目中没有使用estimateRowHeight
属性,在iOS11
的环境下就要注意了,因为开启Self-Sizing
之后,tableView
是使用estimateRowHeight
属性的,这样就会造成contentSize
和contentOffset
值的变化,如果是有动画是观察这两个属性的变化进行的,就会造成动画的异常,因为在估算行高机制下,contentSize
的值是一点点地变化更新的,所有cell
显示完后才是最终的contentSize
值。因为不会缓存正确的行高,tableView reloadData
的时候,会重新计算contentSize
,就有可能会引起contentOffset
的变化。iOS11
下不想使用Self-Sizing
的话,可以通过以下方式关闭:
[UITableView appearance].estimatedRowHeight = 0;
[UITableView appearance].estimatedSectionHeaderHeight = 0;
[UITableView appearance].estimatedSectionFooterHeight = 0;
iOS11
下,如果没有设置estimateRowHeight
的值,也没有设置rowHeight
的值,那contentSize
计算初始值是 44 * cell
的个数.
在iOS11之前,可以只实现
heightForHeaderInSection
方法,而不实现viewForHeaderInSection
方法,但实际上这样写是不规范的,只实现了高度,没有实现View,在iOS11中,这样写就会出现问题。
TableViews:separatorInset 扩展
iOS 7
引入separatorInset
属性,用以设置cell
的分割线边距,在 iOS 11
中对其进行了扩展。可以通过新增的UITableViewSeparatorInsetReference
枚举类型的separatorInsetReference
属性来设置separatorInset
属性的参照值。
typedef NS_ENUM(NSInteger, UITableViewSeparatorInsetReference) {
UITableViewSeparatorInsetFromCellEdges, //默认值,表示separatorInset是从cell的边缘的偏移量
UITableViewSeparatorInsetFromAutomaticInsets //表示separatorInset属性值是从一个insets的偏移量
}
AppIcon
多了一个AppIcon
,1024*1024
LanchImage
多了一个iPhoneX
iPhoneX
-
iPhoneX
的状态栏由原来的 20 变为了 44。这个如果在导航的位置设置自定义的View
,在iPhoneX
上出问题。会挡住View
的显示。 - 启动页,如果使用
LaunchScreen.storyboard
作为启动页,需要调整下Top
的约束,以前为 -20 ,改为 -44 ;
iPhoneX 分辨率: 1125*2436 ,458 ppi
访问相册权限
iOS11
以后使用 NSPhotoLibraryAddUsageDescription
iOS11
之前使用的是 NSPhotoLibraryUsageDescription
详见:Cocoa Keys
屏幕尺寸变化
- {375, 812} iPhone X
- {375, 667} iPhone 8 / iPhone 7 / iPhone 6
- {414, 736} iPhone 8P / iPhone 7P / iPhone 6P
- {320, 568} iPhone SE / iPhone 5
设备号变化
case "iPhone10,1", "iPhone10,4":
return "iPhone 8"
case "iPhone10,2", "iPhone10,5":
return "iPhone 8 Plus"
case "iPhone10,3", "iPhone10,6":
return "iPhone X"