0

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

D C T
  • 39
  • 10

1 Answers1

1

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

matt
  • 515,959
  • 87
  • 875
  • 1,141