jubilee

Programing, Books and more...

UINavigationBarの色を制御する

NavigationBarのカラーやアイテムの色を制御する方法。
NavigationControllerの次のViewControllerで設定を行う。

1
2
3
4
5
6
// 背景色
self.navigationController.navigationBar.barTintColor = [UIColor colorWithHex:@"2F78B7"];
// アイテムの色
self.navigationController.navigationBar.tintColor = [UIColor whiteColor];
// タイトルの色
self.navigationController.navigationBar.titleTextAttributes = @{NSForegroundColorAttributeName:[UIColor whiteColor]};