I need some help. I want that my app runs without status bar.
[[UIApplication sharedApplication] setStatusBarHidden:YES];
I put this line into appDelegate in
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
Maybe exist better place?
You can enter the key:
UIStatusBarHiddenin your info plist, make it a boolean value and set it toYES. Then your app will start without the status bar.