美文网首页
升级iOS 11需要做的事情

升级iOS 11需要做的事情

作者: shiyj | 来源:发表于2017-10-07 11:53 被阅读4次

    appicon 增加1024*1024

    增加相册保存权限提醒

        <key>NSPhotoLibraryAddUsageDescription</key>
        <string>Allow this app to use your photo library</string>
    

    tableview乱跳(下拉刷新、追加数据 reloadData)

            if (@available(iOS 11.0, *)){
                _tableView.contentInsetAdjustmentBehavior = UIScrollViewContentInsetAdjustmentNever;
                _tableView.estimatedRowHeight = 0;
                _tableView.estimatedSectionHeaderHeight = 0;
                _tableView.estimatedSectionFooterHeight = 0;
            }
    

    相关文章

      网友评论

          本文标题:升级iOS 11需要做的事情

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