Closed SebastianBoldt closed 6 years ago
Any solution so far? Thanks.
Hi @zahid119. The current workaround is to set the modalPresentationStyle to overFullscreen of the presented viewController. I didn't find the time to actually debug and fix this issue until today.
let modal = .... create your ViewController over here
modal?.modalPresentationStyle = .overFullScreen
self.present(modal!, animated: true, completion: nil)
setting the modalPresentationStyle to .overFullscreen will fix the issue. Please make the code more robust so users do not need to use .overFullscreen.