handsomecode / InteractiveSideMenu

iOS Interactive Side Menu written in Swift.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Screen becames black

maryanakotova opened this issue · comments

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

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

Thank you!