ios 11 12以后下拉刷新不回位的解决方法

 

 原因:  iOS11弃用了automaticallyAdjustsScrollViewInsets属性,新增contentInsetAdjustmentBehavior来替代它

 

 

 

//解决方案 添加如下代码,建议在 viewDidLoad添加

 

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

        //ios 11以上

        self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

    } else {

        //ios 11以下

        self.automaticallyAdjustsScrollViewInsets=NO;

    }

posted @ 2019-01-07 16:26  SoulDu  阅读(776)  评论(0编辑  收藏  举报