适配iPhoneX

来源:互联网 发布:知乎如何删除话题 编辑:程序博客网 时间:2024/05/17 08:26

1、写到tableView,解决MJrefrsh底部“加载更多”文字在iPhoneX的最底部

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

      self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever ;
  } else {
      self.automaticallyAdjustsScrollViewInsets = NO;

  }


2、#define TabbarHeight     ([[UIApplication sharedApplication] statusBarFrame].size.height>20?83:49) // 适配iPhone x 底栏高度



原创粉丝点击