美文网首页
iOS 13适配记录

iOS 13适配记录

作者: 独立开发者Lau | 来源:发表于2019-09-20 08:51 被阅读0次

一、问题与条目:

1、编译报错 Undefine symbols for architecture armv7:    "__isPlatformVersionAtLeast", referenced from:

解决:升级Xcode 11解决。

2、模导航控制器模态弹出时,控制器界面不能完全铺满整个屏幕。

       从iOS 13.0开始,在iOS上默认为UIModalPresentationAutomatic,解析为UIModalPresentationPageSheet,卡片状不全屏。在以前的版本上默认为UIModalPresentationFullScreen。

解决:可手动设定

presentedVC.modalPresentationStyle = UIModalPresentationStyleFullScreen;

相关文章

网友评论

      本文标题:iOS 13适配记录

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