ios 11 iphonex 适配

  1. table grope样式的间距变大?
table.estimatedRowHeight = 0;
    
table.estimatedSectionHeaderHeight = 0;
    
table.estimatedSectionFooterHeight = 0;
  1. ios11 无导航栏的界面 电池栏问题
//判断ios11  起始位置从-20开始  屏幕高度+20
if (@available(iOS 11.0, *)) {
        
        _scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, -20, WIDTH, HEIGHT)];
        
    } else {
        
        _scrollView = [[UIScrollView alloc] initWithFrame:CGRectMake(0, 0, WIDTH, HEIGHT)];
        
    }
  1. iPhoneX tableView界面显示不全
iPhone X的判断 (([[UIScreen mainScreen] bounds].size.height-812)?NO:YES)

//判断iPhone X  tableView的范围-60
  1. iPhone X 上下黑边问题
放一张 1125 * 2436的启动图

你可能感兴趣的:(ios 11 iphonex 适配)