iPhone Development:Hide statusBar Programmatically in iPhone SDK

Every smartphone device has a status bar at top of the screen displaying signal strength,battery status,carrier name etc. In some of our application, we had to hide the status bar. To  hide Status Bar  programatically, one can use the given below code snippet [[UIApplication sharedApplication] setStatusBarHidden:YES animated:NO]; Note:- This will only work if device is […]

iPhone Development:Hide statusBar Programmatically in iPhone SDK Read More »