美文网首页
iOS 13使用[self presentViewControl

iOS 13使用[self presentViewControl

作者: 不泯iOS | 来源:发表于2019-10-22 16:38 被阅读0次

系统升级到ios 13后,发现使用 presentViewController可能会造成要present的vc地底部被遮挡,如图:


被遮挡.png
正常.png

解决方法就是将vc的modalPresentationStyle设置成UIModalPresentationFullScreen即可。

imagePickerVc.modalPresentationStyle = UIModalPresentationFullScreen

相关属性值有:

UIModalPresentationFullScreen :全屏显示(默认)

UIModalPresentationPageSheet  宽度:竖屏时的宽度(768)  高度:当前屏幕的高度(填充整个高度)

UIModalPresentationFormSheet :占据屏幕中间的一小块(比较常用)

UIModalPresentationCurrentContext :跟随父控制器的呈现样式

相关文章

网友评论

      本文标题:iOS 13使用[self presentViewControl

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