美文网首页
iOS iphone X 适配

iOS iphone X 适配

作者: Rokkia | 来源:发表于2018-06-26 11:58 被阅读19次

//顶部navi 设置

#define kStatusRectHeight [[UIApplication sharedApplication] statusBarFrame].size.height

#define KIsiPhoneX ([UIScreen instancesRespondToSelector:@selector(currentMode)] ? CGSizeEqualToSize(CGSizeMake(1125, 2436), [[UIScreen mainScreen] currentMode].size) : NO)

#define kNaviHeight  kStatusRectHeight + 44

// tableview 设置

if (@available(iOS 11.0, *)) {
    self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;
}

//masonry 配置

make.bottom.mas_equalTo(self.view.mas_safeAreaLayoutGuideBottom)

相关文章

网友评论

      本文标题:iOS iphone X 适配

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