Open fajaradiwa opened 8 years ago
I have same bug, any idea?
I have the same error
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 solution didn't work for me. Anyone else has a fix for this bug? Thanks!
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. :/
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)
No problem, but thanks anyway for your reply. I solved my problem following the instructions on this post: (#62)
Great!
UIStoryboard *mainStoryboard = [UIStoryboard storyboardWithName:@"Main" bundle: nil];
menu transition work well ... but the side menu render blank (black screen) ... need help ? :(