美文网首页
iOS11 存在的问题

iOS11 存在的问题

作者: 888zq | 来源:发表于2018-03-27 11:11 被阅读63次

    iOS11 存在的问题 

    拍照那边Asset 需要延时

    tableView的三个预测高度不在默认是0 必须自己设置

    self.tableView.estimatedRowHeight=0;

    self.tableView.estimatedSectionFooterHeight=0;

    self.tableView.estimatedSectionHeaderHeight=0;

    os11 权限:1、定位 如果APP在前后台都需要定位需要info.plist添加Privacy - Location Always and When In Use Usage Description 2、相册  需要info.plist添加Privacy - Photo Library Additions Usage Description      否则会崩

    可以在相对应的界面里面添加 if (@available(iOS 11.0, *)) {

    [UIScrollView appearance].contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;

    } else {

    }

    适配scrollview的下压

    对于安全区域问题

    tableView会自动适配安全区域

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

            self.tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentAutomatic;

        }

    相关文章

      网友评论

          本文标题:iOS11 存在的问题

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