-
Notifications
You must be signed in to change notification settings - Fork 1.3k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
black status bar when open side menu #315
Comments
Me,too. How to fix it if anyone knows that ? |
if only somebody resolved that... |
ok, so for the legacy knowledge what I have done to solve it:
@interface RootVC () <RESideMenuDelegate>
@property (nonatomic, strong) UIViewController *contentVC;
@end
- (RESideMenu *)configuredSideMenuVCWithMenu:(UIViewController *)menuVC {
RESideMenu *sideMenuViewController = [[RESideMenu alloc] initWithContentViewController:self.contentVC leftMenuViewController:nil rightMenuViewController:menuVC];
// Here I change all sorts of parameters like shadows, colors, etc.
return sideMenuViewController;
}
- (void)sideMenu:(RESideMenu *)sideMenu didHideMenuViewController:(UIViewController *)menuViewController {
self.contentVC.view.backgroundColor = UIColor.whiteColor;
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
when I open side menu a black view appears instead of status bar only on iOS 10
The text was updated successfully, but these errors were encountered: