简体   繁体   English

在Swift中更改导航栏

[英]Changing the Navigation Bar in Swift

I would simply like to know how to make my navigation bar look like the one on the left in the image below: 我只想知道如何使导航栏看起来像下图中左侧的导航栏:

我当前的应用是右侧的

My app uses a navigation controller, and the navigation bar by default looks like the screen on the right in the image. 我的应用程序使用导航控制器,默认情况下,导航栏看起来像图像右侧的屏幕。 I don't like it being so small and would like it higher and also to be able to change the colour and the font of the text used for the header. 我不希望它这么小,不希望它更高,而且还希望能够更改标题的文本的颜色和字体。

I would appreciate any help in how to do this and where to place the code. 对于在执行此操作以及将代码放置在何处方面的任何帮助,我将不胜感激。

thanks 谢谢

There are many ways to costumize your navigation bar: 有很多方法可以汇总导航栏:

//You can change the bar style
navigationController?.navigationBar.barStyle = UIBarStyle.Black

// You can change the background color 
navigationController?.navigationBar.barTintColor = UIColor(red: 4 / 255, green: 47 / 255, blue: 66 / 255, alpha: 1)

// You can add a logo on it
let navBarImageView = UIImageView(frame: CGRect(x: 0, y: 0, width: 30, height: 30))
navBarImageView.contentMode = .ScaleAspectFit
let navBarImage = UIImage(named: "myNavBarLogo.png")
navBarImageView.image = navBarImage
navigationItem.titleView = navBarImageView

//You can change the text color
 navigationController?.navigationBar.tintColor = UIColor.yellowColor()

//You can change the font
if let font = UIFont(name: "AppleSDGothicNeo-Thin", size: 34) {
    UINavigationBar.appearance().titleTextAttributes = [NSFontAttributeName: font]
}

You just need to play with those attributs to get the Navigation Bar as you want. 您只需要使用这些属性即可随意获取导航栏。

I hope that helps you! 希望对您有所帮助!

You can change the navigation bar in Interface Builder. 您可以在Interface Builder中更改导航栏。

You can change the background color by changing the bar tint. 您可以通过更改条形色调来更改背景颜色。 You can also change the title font, color, and etc., as you can see below: 您还可以更改标题字体,颜色等,如下所示:

在此处输入图片说明

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM