handsomecode / InteractiveSideMenu

iOS Interactive Side Menu written in Swift.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Screen came black in ios 13

baluchamy opened this issue · comments

I am trying your solution but it not work for me

I am also facing the same issue but still not get any solution.
After so many trails I know that this is because of iOS-13 new SceneDelegate. But not able to fix the issue.
From April 2020 Onward Apple accepts only Xcode 11 uploaded build. So before that, I want to fix this issue.

It would be great if someone has a proper solution.

set presentation style to "Full Screen" of all your MenuContainerViewController, MenuViewController & SideMenuItemContent

set presentation style to "Full Screen" of all your MenuContainerViewController, MenuViewController & SideMenuItemContent

yes worked for me

after that

menuViewController = self.storyboard!.instantiateViewController(withIdentifier: "NavigationMenu") as? MenuViewController

add this line :
menuViewController.modalPresentationStyle = .fullScreen

menuViewController.modalPresentationStyle = .fullScreen

This really worked in my project.
Solution for InteractiveSideMenu pod Black Screen.
Thanks for your work @torunf 👏🏻👏🏻👏🏻👏🏻appreciated.