IOS 11 下适配UITableView_移动开发_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > 移动开发 > IOS 11 下适配UITableView

IOS 11 下适配UITableView

 2017/9/25 19:38:14  spider_pei  程序员俱乐部  我要评论(0)
  • 摘要:p.p1{margin:0.0px0.0px0.0px0.0px;line-height:24.0px;font:14.0px"SongtiSC";color:#000000}p.p2{margin:0.0px0.0px0.0px0.0px;line-height:24.0px;font:14.0px"SongtiTC";color:#000000}p.p3{margin:0.0px0.0px0.0px0.0px;line-height:24.0px;font:14.0pxTimes
  • 标签:view iOS

class="p1">9月份苹果发布了IOS11Iphone X,这一操作系统一硬件对于开发者适配上面还是造作了不少蛋疼的地方。先来看看IOS 11,这些蛋疼的需要适配的地方:

1UIScrollView及其子类在IOS 11之前的版本UI显示完全正常,但是在IOS 11上面会显示奇葩的界面。

1)先看一下UITablevIew

原本在VC里面的automaticallyAdjustsScrollViewInsets竟然过期了,在IOS 11 APPLE推荐使用UIScrollViewcontentInsetAdjustmentBehavior属性进行设置自动计算滚动视图的内容边距。

@property(nonatomic,assign) BOOL automaticallyAdjustsScrollViewInsets

IOS11SDK下,UIScrollView的这个属性

@property(nonatomic) UIScrollViewContentInsetAdjustmentBehavior contentInsetAdjustmentBehavior //这个属性是一个枚举类型的

{

UIScrollViewContentInsetAdjustmentAutomatic,//scrollView会自动计算和适应顶部和底部的内边距并且在scrollView 不可滚动,也会设置内边距.

UIScrollViewContentInsetAdjustmentScrollableAxes,  //自动适应边距

UIScrollViewContentInsetAdjustmentNever // automaticallyAdjustsScrollViewInsets=NO有着同样的效果,不计算内边距

UIScrollViewContentInsetAdjustmentAlways//根据safeAreaInsets (安全区域)计算内边距

}

所以,在IOS 11 下,需要设置ScrollView

self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

如果需要全局设置的话,需要这么设置:

if (@available(iOS 11.0, *)) {

 

[[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIScrollViewContentInsetAdjustmentNever];

}

这样设置后使用UITableview 、UICollectionView、UIScrollview的时候就不需要再单独设置该属性了,因为UIView以及他的子类都是遵循UIAppearance协议的。

上一篇: Java平台与.Net平台在服务器端前景预测 下一篇: 没有下一篇了!
发表评论
用户名: 匿名