如何使用swift3增加导航栏的高度并更改xcode 8中状态栏的颜色?

时间:2017-05-01 15:05:04

标签: ios swift

我想更改导航栏的高度,以便我可以在其中添加搜索栏字段。由于导航栏的背景颜色为紫色,我想将状态栏(数据载体,屏幕顶部的日期和电池小部件)的颜色更改为白色而不是黑色。感谢

1 个答案:

答案 0 :(得分:0)

您应该查看此示例应用,因为它解释了如何修改UINavigationBar。

https://developer.apple.com/library/content/samplecode/NavBar/Introduction/Intro.html

要将状态栏更改为白色,请将其添加到ViewController。

override var preferredStatusBarStyle: UIStatusBarStyle {

    return .lightContent
}