tabbar文字颜色与大小
[tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName : UIColorFromRGT(123, 123, 123,1),NSFontAttributeName : [UIFont fontWithName:@"Helvetica" size:12.0]} forState:UIControlStateNormal];
[tabBarItem setTitleTextAttributes:@{NSForegroundColorAttributeName : UIColorFromRGT(124, 214, 0,1)NSFontAttributeName : [UIFont fontWithName:@"Helvetica" size:12.0]} forState:UIControlStateSelected];
设置导航栏文字颜色与大小
[navigationBar setTitleTextAttributes:@{NSForegroundColorAttributeName : UIColorFromRGT(124, 214, 0,1)NSFontAttributeName : [UIFont fontWithName:@"Helvetica" size:12.0]} forState:UIControlStateSelected];
//.设置状态栏样式
[UIApplication sharedApplication].statusBarStyle = UIStatusBarStyleLightContent;
设置tabbar不透明
self.tabBar.translucent = NO;