美文网首页
解决MJRefresh上下拉刷新无法收回

解决MJRefresh上下拉刷新无法收回

作者: 一笑wangx | 来源:发表于2019-01-25 13:36 被阅读8次

    //解决MJRefresh上下拉刷新无法收回
    if (@available(iOS 11.0, *)) {
    self.scrollView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
    if ([self.scrollView isKindOfClass:[UITableView class]]) {
    // iOS 11的tableView自动算高默认自动开启,不想使用则要这样关闭
    UITableView *tableView = (UITableView *)self.scrollView;
    tableView.estimatedRowHeight = 0;
    tableView.estimatedSectionHeaderHeight = 0;
    tableView.estimatedSectionFooterHeight = 0;
    }
    } else {
    // Fallback on earlier versions
    self.automaticallyAdjustsScrollViewInsets = NO;
    }

    相关文章

      网友评论

          本文标题:解决MJRefresh上下拉刷新无法收回

          本文链接:https://www.haomeiwen.com/subject/wcmmjqtx.html