美文网首页
【iOS】设置导航栏文字颜色,字体,左右Item文字颜色,字体

【iOS】设置导航栏文字颜色,字体,左右Item文字颜色,字体

作者: yangli | 来源:发表于2018-08-29 16:31 被阅读0次
//left、right-item color【左右item的颜色】   
 [[UIBarButtonItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont systemFontOfSize:15], NSFontAttributeName,[UIColor colorWithHexString:@"#333333"],NSForegroundColorAttributeName,nil] forState:UIControlStateNormal];  

 [[UIBarButtonItem appearance] setTitleTextAttributes:[NSDictionary dictionaryWithObjectsAndKeys:[UIFont systemFontOfSize:15], NSFontAttributeName,[[UIColor colorWithHexString:@"#333333"] colorWithAlphaComponent:0.5],NSForegroundColorAttributeName,nil] forState:UIControlStateHighlighted];      

//title颜色 Attributes 可以包含字体颜色和大小以及字体样式【中间Title字体】    
 [[UINavigationBar appearance] setTitleTextAttributes:@{NSFontAttributeName:[UIFont boldSystemFontOfSize:17],NSForegroundColorAttributeName:kColorNavigationBarTint}];        


//NavigationBar backgroundcolor【背景色】   
 [[UINavigationBar appearance] setBarTintColor:[UIColor whiteColor]];

相关文章

网友评论

      本文标题:【iOS】设置导航栏文字颜色,字体,左右Item文字颜色,字体

      本文链接:https://www.haomeiwen.com/subject/lsdkwftx.html