Wednesday, July 23, 2014

How To Hide Status Bar In iOS 7

- (BOOL)prefersStatusBarHidden
{
   return YES;
}

Write above method on every UIViewController class which has a UIView to show without status bar.

No comments:

Post a Comment