In a ViewController, which I presented modally, I did this:
override func prefersStatusBarHidden() -> Bool { return true }
This used
UIApplication.sharedApplication().setStatusBarHidden(true, withAnimation: .None)
and when you want it back in a separate VC:
UIApplication.sharedApplication().setStatusBarHidden(false, withAnimation: .None)