“Swift Navigation Bar Color” Ответ

быстрое изменение навигационного цвета стержня

// 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 Color

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

UINavigationBar.appearance().titleTextAttributes = attrs
sej

Ответы похожие на “Swift Navigation Bar Color”

Вопросы похожие на “Swift Navigation Bar Color”

Больше похожих ответов на “Swift Navigation Bar Color” по Swift

Смотреть популярные ответы по языку

Смотреть другие языки программирования