我希望我的导航栏看起来与Twitter应用程序类似。我的应用程序只有三个不同的视图,所以我不介意手动执行每个视图。我该怎么做呢?
答案 0 :(得分:1)
创建一个视图,将其放在状态栏所在的位置,并将其背景颜色设置为您喜欢的颜色。
let statusBarView = UIView(frame: UIApplication.sharedApplication().statusBarFrame)
statusBarView.backgroundColor = UIColor.greenColor() // Replace with color you desire
self.view.addSubview(statusBarView)