如何在IOS 11中为新的大型条设置渐变颜色的UINavigationbar?

问题描述 投票:0回答:1

我需要用渐变色制作这个条。我已经在普通导航栏中找到了这个问题,但它不适合新的大型导航栏。

enter image description here

ios uinavigationcontroller uinavigationbar calayer
1个回答
0
投票

要设置背景颜色,请使用此代码

self.navigationController?.setBackgroundColor(UIColor.blue)

要更改文本和字体,请使用此代码

UINavigationBar.appearance().largeTitleTextAttributes = 
[NSAttributedStringKey.foregroundColor:UIColor.blue, 
 NSAttributedStringKey.font:UIFont.boldSystemFont(ofSize: 22)]

试试这个

© www.soinside.com 2019 - 2024. All rights reserved.