handsomecode / InteractiveSideMenu

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

Screen came black in ios 13 #116

Open baluchamy opened 4 years ago

baluchamy commented 4 years ago

I am trying your solution but it not work for me

mayuritalaviya commented 4 years ago

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.

DnyaneshwarWagh commented 4 years ago

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

torunf commented 4 years ago

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

balamithun commented 4 years ago

menuViewController.modalPresentationStyle = .fullScreen

This really worked in my project. Solution for InteractiveSideMenu pod Black Screen. Thanks for your work @torunf ๐Ÿ‘๐Ÿป๐Ÿ‘๐Ÿป๐Ÿ‘๐Ÿป๐Ÿ‘๐Ÿปappreciated.