“Swift Navigation Bar Titelfarbe” Code-Antworten

Swift Change Navigation Bar Farbe

// Navigation Bar:
navigationController?.navigationBar.barTintColor = UIColor.green

// Navigation Bar Text:
navigationController?.navigationBar.titleTextAttributes = [.foregroundColor: UIColor.orange]

// Tab Bar:
tabBarController?.tabBar.barTintColor = UIColor.brown

// Tab Bar Text:
tabBarController?.tabBar.tintColor = UIColor.yellow
Mobile Star

Swift Navigation Bar Titelfarbe

// Place this in your didFinishLaunchingWithOptions method in the AppDelegate
let attrs = [
  NSAttributedString.Key.foregroundColor: UIColor.white
]

UINavigationBar.appearance().titleTextAttributes = attrs
sej

Ähnliche Antworten wie “Swift Navigation Bar Titelfarbe”

Fragen ähnlich wie “Swift Navigation Bar Titelfarbe”

Weitere verwandte Antworten zu “Swift Navigation Bar Titelfarbe” auf Swift

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen