iOS 13适配记录

一、问题与条目:

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

解决:升级Xcode 11解决。

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

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

解决:可手动设定

presentedVC.modalPresentationStyle = UIModalPresentationStyleFullScreen;

你可能感兴趣的:(iOS 13适配记录)