如何使状态栏与导航栏的颜色相同?

时间:2015-02-11 00:23:47

标签: ios swift

我希望我的导航栏看起来与Twitter应用程序类似。我的应用程序只有三个不同的视图,所以我不介意手动执行每个视图。我该怎么做呢?

1 个答案:

答案 0 :(得分:1)

创建一个视图,将其放在状态栏所在的位置,并将其背景颜色设置为您喜欢的颜色。

let statusBarView = UIView(frame: UIApplication.sharedApplication().statusBarFrame)
statusBarView.backgroundColor = UIColor.greenColor() // Replace with color you desire
self.view.addSubview(statusBarView)