SebastianBoldt / Jelly

🌊 - Jelly is a library for animated, non-interactive & interactive viewcontroller transitions and presentations with the focus on a simple and yet flexible API.
http://www.sebastianboldt.com/
MIT License
2.45k stars 123 forks source link

Presenting a ViewController over a Jelly ViewController will result in a glitch #35

Closed SebastianBoldt closed 6 years ago

SebastianBoldt commented 7 years ago

setting the modalPresentationStyle to .overFullscreen will fix the issue. Please make the code more robust so users do not need to use .overFullscreen.

SebastianBoldt commented 7 years ago

ohne titel

zahid119 commented 7 years ago

Any solution so far? Thanks.

SebastianBoldt commented 7 years ago

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)