码迷,mamicode.com
首页 > 移动开发 > 详细

iOS-UINavigationBar【颜色设置】

时间:2017-12-04 11:37:33      阅读:169      评论:0      收藏:0      [点我收藏+]

标签: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【颜色设置】

标签:metrics   bsp   背景色   round   white   appear   ini   default   enc   

原文地址:http://www.cnblogs.com/wangkejia/p/7976043.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!