欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

苹果ios11新协议:MJRefresh在iOS11.0中稍微下拉触发瞬间刷新事件

程序员文章站 2022-07-03 21:14:50
苹果ios11新协议:MJRefresh在iOS11.0中稍微下拉触发瞬间刷新事件自iOS11.0和iPhone X发布以来iOSDeveloper都要学习苹果爸爸给的新协议,MJ...

苹果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(64, 0, 0, 0);
    self.tableView.scrollIndicatorInsets = self.tableView.contentInset;