iOS-Slide-Menu icon indicating copy to clipboard operation
iOS-Slide-Menu copied to clipboard

Left Menu render Blank View

Open fajaradiwa opened this issue 9 years ago • 7 comments

UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle: nil];

LeftViewController *leftMenu = [mainStoryboard instantiateViewControllerWithIdentifier: @"LeftViewController"];

[SlideNavigationController sharedInstance].leftMenu = leftMenu;

menu transition work well ... but the side menu render blank (black screen) ... need help ? :(

fajaradiwa avatar Apr 24 '16 04:04 fajaradiwa

I have same bug, any idea?

3r1k83 avatar Mar 13 '17 10:03 3r1k83

I have the same error

coolcool1994 avatar Jun 21 '17 14:06 coolcool1994

I had that issue and solved it by setting the left menu on my VC instead of the AppDelegate.

I mean, put the code bellow into the viewDidLoad method of your VC witch shows the menu.

UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle: nil]; LeftViewController *leftMenu = [mainStoryboard instantiateViewControllerWithIdentifier: @"LeftViewController"]; [SlideNavigationController sharedInstance].leftMenu = leftMenu;

luisvasquez avatar Aug 25 '17 19:08 luisvasquez

luisvasquez solution didn't work for me. Anyone else has a fix for this bug? Thanks!

neowinston avatar Aug 07 '19 17:08 neowinston

luisvasquez solution didn't work for me. Anyone else has a fix for this bug? Thanks!

Sorry, I don't remember that solution and don't have access to that code anymore. :/

luisvasquez avatar Aug 07 '19 17:08 luisvasquez

No problem, but thanks anyway for your reply. I solved my problem following the instructions on this post: (https://github.com/aryaxt/iOS-Slide-Menu/issues/62)

neowinston avatar Aug 08 '19 12:08 neowinston

No problem, but thanks anyway for your reply. I solved my problem following the instructions on this post: (#62)

Great!

luisvasquez avatar Aug 09 '19 12:08 luisvasquez