关于模态弹出问题,presentViewController
在iOS13之前,如果没有定义UIModalPresentationStyle这个东西呢,系统默认给fullScreen,也就是全屏盖住,但在iOS13中,默认给case automatic这个值,必须要进行一个手动设置。
设置
设置.modalPresentationStyle = 0 ; 0对应的就是fullscreen
关于模态弹出问题,presentViewController
在iOS13之前,如果没有定义UIModalPresentationStyle这个东西呢,系统默认给fullScreen,也就是全屏盖住,但在iOS13中,默认给case automatic这个值,必须要进行一个手动设置。
设置.modalPresentationStyle = 0 ; 0对应的就是fullscreen