搜索
您的当前位置:首页正文

MJRefresh在iphoneX上底部一直显示上拉提示

来源:二三娱乐

appdelegate的didFinishLaunchingWithOptions里设置:

if (@available(iOS 11.0, *)) {
    [[UIScrollView appearance] setContentInsetAdjustmentBehavior:UIApplicationBackgroundFetchIntervalNever];
    [[UITableView appearance] setEstimatedRowHeight:0.f];
    [[UITableView appearance] setEstimatedSectionHeaderHeight:0.f];
    [[UITableView appearance] setEstimatedSectionFooterHeight:0.f];
}
Top