Add this line in Info.plist
View controller-based status bar appearance and set value : NO
Then add this line in AppDelegate.m
View controller-based status bar appearance and set value : NO
Then add this line in AppDelegate.m
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions { [[UIApplication sharedApplication] setStatusBarHidden:NO]; [[UIApplication sharedApplication] setStatusBarStyle:UIStatusBarStyleLightContent]; return YES; }
No comments:
Post a Comment