標籤:metrics bsp 背景色 round white appear ini default enc
UINavigationBar的一些顏色設定,以前老是忘,這次記住了
- (void)setNavigationBar{ ///NavigationBar backgroundcolor【背景色】 [[UINavigationBar appearance] setBarTintColor:Wonderful_GreenColor9]; ///left、right-item color【左右item的顏色】 [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]]; ///title顏色 Attributes 可以包含字型顏色和大小以及字型樣式【中間Title字型】 [UINavigationBar appearance].titleTextAttributes = @{NSForegroundColorAttributeName :[UIColor whiteColor]}; ///navigation背景圖// [[UINavigationBar appearance] setBackgroundImage:[[UIImage alloc] init] forBarMetrics:UIBarMetricsDefault];// [[UINavigationBar appearance] setShadowImage:[[UIImage alloc] init]];// [[UINavigationBar appearance] setBackgroundImage:[UIImage imageNamed:@"topbg"] forBarMetrics:UIBarMetricsDefault];// [UINavigationBar appearance].translucent = NO;}
iOS-UINavigationBar【顏色設定】