You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I created this little handy bit for crafting a side menu view controller
- (RESideMenu *)configuredSideMenuVCWithMenu:(UIViewController *)menuVC {
RESideMenu *sideMenuViewController = [[RESideMenu alloc] initWithContentViewController:self.contentVC leftMenuViewController:nilrightMenuViewController:menuVC];
// Here I change all sorts of parameters like shadows, colors, etc.return sideMenuViewController;
}
and finally I changed the background color to the desired value after hiding the menu (you can change it in other delegate methods if you play with shadows like I did inside my configuredSideMenuVCWithMenu)
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: