Currently (starting from iOS7), to do this, you need to override the little tiny lily method of each UIViewController that you want to do
Swift
override func prefersStatusBarHidden() -> Bool { return true; }
Goal c
-(BOOL)prefersStatusBarHidden{ return YES; }
Apple Doc: 
source share