Changing the iPhone status bar
Just use this code to change the type of status bar shown. Stick it in the applicationDidFinishLaunching method which is usually in your MyAppDelegate.m
[application setStatusBarStyle:UIStatusBarStyleBlackOpaque];
Category: Programming

Comments