“Swift Change Navigation Bar Farbe” 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 Change Navigation Bar Farbe”

Fragen ähnlich wie “Swift Change Navigation Bar Farbe”

Weitere verwandte Antworten zu “Swift Change Navigation Bar Farbe” auf Swift

Durchsuchen Sie beliebte Code-Antworten nach Sprache

Durchsuchen Sie andere Codesprachen