首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 其他教程 > 操作系统 >

iOS7 navigationBar and TabBar Color 默许有变化

2013-11-21 
iOS7 navigationBar and TabBar Color 默认有变化self.navigationController.navigationBar.translucentN

iOS7 navigationBar and TabBar Color 默认有变化

self.navigationController.navigationBar.translucent=NO;默认为yesif (floor(NSFoundationVersionNumber) <= NSFoundationVersionNumber_iOS_6_1) {        [[UINavigationBar appearance]setTintColor:NavigationColor];} else {     [[UINavigationBar appearance]setTintColor:[UIColor whiteColor]]; // it set color of bar button item text     [[UINavigationBar appearance]setBarTintColor:[UIColor GreenColor]]; // it set color of navigation     [[UINavigationBar appearance] setBarStyle:UIBarStyleDefault]; // it set Style of UINavigationBar     [[UINavigationBar appearance]setTitleTextAttributes:@{UITextAttributeTextColor : [UIColor whiteColor]}]; //It set title color of Navigation Bar   }

?

热点排行