IOS 11 下適配UITableView,iosuitableview
9月份蘋果發布了IOS11和Iphone X,這一作業系統一硬體對於開發人員適配上面還是造作了不少蛋疼的地方。先來看看IOS 11,這些蛋疼的需要適配的地方:
1、UIScrollView及其子類在IOS 11之前的版本UI顯示完全正常,但是在IOS 11上面會顯示奇葩的介面。
(1)先看一下UITablevIew。
原本在VC裡面的automaticallyAdjustsScrollViewInsets竟然到期了,在IOS 11下 APPLE推薦使用UIScrollView的contentInsetAdjustmentBehavior屬性進行設定自動計算滾動視圖的內容邊距。
@property(nonatomic,assign) BOOL automaticallyAdjustsScrollViewInsets
在IOS11的SDK下,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協議的。