I already googled a little bit but without success. I want to have a custom background color for the status bar in all my ViewControllers (only in portrait mode). The ViewContro
Try this, it will help.
let demoView = UIView() demoView.frame = CGRectMake(0, 0, 320, 22) demoView.backgroundColor = UIColor.redColor() self.view.addSubview(demoView)