iosswiftmodalviewcontrollerpresentmodalviewcontrolleruimodalpresentationstyle

How to present viewcontroller in fullscreen on ipad


I have a view controller , I can present it modally with full screen on iPhone but It's not becoming fullscreen on ipad. ( Its a small screen centered on iPad )

    iVC.modalPresentationStyle = .fullScreen
    iVC.presentFullScreen(myVC, animated: true)

I tried

iVC.modalPresentationStyle = .overFullScreen

Any ideas please


Solution

  • The view controller whose modalPresentationStyle needs to be .fullScreen is myVC, not iVC.