如何在 ipad 上全屏显示 viewcontroller
How to present viewcontroller in fullscreen on ipad
我有一个视图控制器,我可以在 iPhone 上全屏显示它,但在 ipad 上它不会全屏。 (它是一个以 iPad 为中心的小屏幕)
iVC.modalPresentationStyle = .fullScreen
iVC.presentFullScreen(myVC, animated: true)
我试过了
iVC.modalPresentationStyle = .overFullScreen
有什么想法吗
modalPresentationStyle
需要.fullScreen
的视图控制器是myVC
,不是iVC
。
我有一个视图控制器,我可以在 iPhone 上全屏显示它,但在 ipad 上它不会全屏。 (它是一个以 iPad 为中心的小屏幕)
iVC.modalPresentationStyle = .fullScreen
iVC.presentFullScreen(myVC, animated: true)
我试过了
iVC.modalPresentationStyle = .overFullScreen
有什么想法吗
modalPresentationStyle
需要.fullScreen
的视图控制器是myVC
,不是iVC
。