In a ViewController, which I presented modally, I did this:
override func prefersStatusBarHidden() -> Bool { return true }
This used
For Swift 3,
override var prefersStatusBarHidden: Bool{ return true }
and add viewDidLoad()
viewDidLoad()
self.modalPresentationCapturesStatusBarAppearance = true