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
The view controller whose modalPresentationStyle
needs to be .fullScreen
is myVC
, not iVC
.