ios11

作者: 追逐_chase | 来源:发表于2018-07-03 09:15 被阅读10次
    1. iPhone X对应像素 1125 * 2436
    2. MJ刷新适配
      //声明tableView的位置 添加下面代码
      if (@available(iOS 11.0, *)) {
      _tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
      _tableView.contentInset = UIEdgeInsetsMake(64, 0, 49, 0);
      _tableView.scrollIndicatorInsets = _tableView.contentInset;
      }

    相关文章

      网友评论

        本文标题:ios11

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