handsomecode / InteractiveSideMenu

iOS Interactive Side Menu written in Swift.
Apache License 2.0
708 stars 163 forks source link

Screen becames black #115

Closed maryanakotova closed 4 years ago

maryanakotova commented 4 years ago

Screen of presented ViewController became black with some delay after presenting (when selecting any item from menu). Tested on iOS 13.2, iPhoneX, SE.

gunjan33 commented 4 years ago

Try setting the modalPresentationStyle of menu viewController to fullScreen as below. It should solve the problem. self.menuViewController.modalPresentationStyle = .fullScreen

For more details please refer https://github.com/handsomecode/InteractiveSideMenu/issues/112#issuecomment-533745269

maryanakotova commented 4 years ago

Thank you!