Open AhmedOsman00 opened 6 years ago
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;
}
configuredSideMenuVCWithMenu
)
- (void)sideMenu:(RESideMenu *)sideMenu didHideMenuViewController:(UIViewController *)menuViewController {
self.contentVC.view.backgroundColor = UIColor.whiteColor;
}
when I open side menu a black view appears instead of status bar only on iOS 10