如何在 iOS 上更改导航栏文本颜色?
更改导航栏文本颜色既简单又棘手,在这篇文章中,我们将介绍如何使用 swift 更改导航栏的文本颜色。
那么让我们开始吧,
如下图所示,将视图控制器嵌入导航控制器中,并将特定控制器的导航项目命名为教程,如下图所示,
现在导航到 AppDelegate.swift 并向 didFinisheLaunchingWithOptions 方法中添加以下行。
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool { // Override point for customization after application launch. let textColor = [NSAttributedString.Key.foregroundColor:UIColor.green] UINavigationBar.appearance().titleTextAttributes = textColor return true }
运行应用程序,看看我们如何将颜色更改为绿色。
广告