Reputation: 41
How to hide status bar when a application show the default image in iOS? as an other word,when my application load the defaul image I don't want to show the defaul image and when load finished, i want to show the image again/
Upvotes: 0
Views: 180
Reputation: 1103
try this
- (BOOL) application:(UIApplication*)application didFinishLaunchingWithOptions:(NSDictionary*)launchOptions
{
[application setStatusBarHidden:YES withAnimation:UIStatusBarAnimationNone];
}
Upvotes: 1