//導(dǎo)航條統(tǒng)一設(shè)置
? ? UIFont *font = [UIFont fontWithName:@"Helvetica" size:18.0];//標(biāo)題字體大小
? ? NSDictionary *textAttributes = @{NSFontAttributeName : font,NSForegroundColorAttributeName:[UIColor whiteColor],};
? ? [[UINavigationBar appearance] setTitleTextAttributes:textAttributes];
//導(dǎo)航條顏色
? ? [[UINavigationBar appearance] setTintColor:[UIColor whiteColor]];
? ? [[UINavigationBar appearance] setTranslucent:NO];
? ? [[UINavigationBar appearance] setBarTintColor:navigationColor];
//導(dǎo)航條按鈕設(shè)置
? ? [[UIBarButtonItem appearanceWhenContainedIn:[UINavigationBar class], nil] setTitleTextAttributes:@{NSFontAttributeName: [UIFont systemFontOfSize:14], NSForegroundColorAttributeName: [UIColor whiteColor]} forState:UIControlStateNormal];