iOS11 存在的问题
2018-03-27 本文已影响63人
888zq
iOS11 存在的问题
拍照那边Asset 需要延时
tableView的三个预测高度不在默认是0 必须自己设置
self.tableView.estimatedRowHeight=0;
self.tableView.estimatedSectionFooterHeight=0;
self.tableView.estimatedSectionHeaderHeight=0;
os11 权限:1、定位 如果APP在前后台都需要定位需要info.plist添加Privacy - Location Always and When In Use Usage Description 2、相册 需要info.plist添加Privacy - Photo Library Additions Usage Description 否则会崩
可以在相对应的界面里面添加 if (@available(iOS 11.0, *)) {
[UIScrollView appearance].contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else {
}
适配scrollview的下压
对于安全区域问题
tableView会自动适配安全区域
if (@available(iOS 11.0, *)) {
self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;
}