苹果iOS11新协议:MJRefresh在iOS11.0中稍微上拉触发瞬间刷新事件,自iOS11.0和iPhone X发布以来iOSDeveloper都要学习苹果爸爸给的新协议,MJRefresh在iOS11.0中也不能幸免,手势触摸屏幕,稍微下拉就会触发下拉刷新事件,还有就是我的TableView分区头会自动的乱跑。
@property(nonatomic,assign) BOOL automaticallyAdjustsScrollViewInsets API_DEPRECATED_WITH_REPLACEMENT("Use UIScrollView's contentInsetAdjustmentBehavior instead", ios(7.0,11.0),tvos(7.0,11.0)); // Defaults to YES
iOS11.0也弃用了automaticallyAdjustsScrollViewInsets。
解决方案:
if(@available(iOS 11.0, *)) {
self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
} else{self.automaticallyAdjustsScrollViewInsets = NO;}
self.tableView.contentInset = UIEdgeInsetsMake(0, 0, 49, 0); self.tableView.scrollIndicatorInsets = self.tableView.contentInset;
网友评论