For some application, it may be usefull to hide the status bar so that the application has maximum screen area.
To hide the status bar, send the setStatusBarHidden message to the UIApplication object. It should be send in the UIApplication's didFinishLaunchingWithOptions method. This method will be invoked when the application finish launching.
eg.
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)
launchOptions {
.....
[[UIApplication sharedApplication]setStatusBarHidden:YES];.....
.......
}
No comments:
Post a Comment