iOS 13.0以后presentViewController
2020-12-11 本文已影响0人
这个小孩不吃糖
在iOS13中使用presentViewController的时候,页面顶部会空出一部分来,并且可以手动往下滑动关闭界面。
原因:UIViewController的一个属性modalPresentationStyle
在iOS13中,modalPresentationStyle的默认值是UIModalPresentationAutomatic,而在iOS12以下的版本,默认值是UIModalPresentationFullScreen,这就导致了在iOS13中present出来的页面没法全屏。因此加上代码:
XXXX.modalPresentationStyle = UIModalPresentationFullScreen;
显示正常。