美文网首页iOS UI
iOS 13.0以后presentViewController

iOS 13.0以后presentViewController

作者: 这个小孩不吃糖 | 来源:发表于2020-12-11 17:07 被阅读0次

在iOS13中使用presentViewController的时候,页面顶部会空出一部分来,并且可以手动往下滑动关闭界面。

原因:UIViewController的一个属性modalPresentationStyle

在iOS13中,modalPresentationStyle的默认值是UIModalPresentationAutomatic,而在iOS12以下的版本,默认值是UIModalPresentationFullScreen,这就导致了在iOS13中present出来的页面没法全屏。因此加上代码:

XXXX.modalPresentationStyle = UIModalPresentationFullScreen;

显示正常。

相关文章

网友评论

    本文标题:iOS 13.0以后presentViewController

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