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

IOS 自定义全局navigaitonbar 属性样式

时间:2014-12-11 01:31:52      阅读:724      评论:0      收藏:0      [点我收藏+]

标签:io   ar   color   os   sp   for   on   art   bs   

@implementation ZBMainViewController

 

- (void)viewDidLoad {

    [super viewDidLoad];

  

}

 

+(void)initialize

{

    [self setupBarButtonItemTheme];

 

    [self setupNavigationBarTheme];

}

 

+(void)setupBarButtonItemTheme{

 

    UIBarButtonItem *appearance=[UIBarButtonItem appearance];

    

    NSMutableDictionary *dict=[NSMutableDictionary dictionary];

    dict[NSFontAttributeName]=[UIFont systemFontOfSize:15];

   dict[NSForegroundColorAttributeName]=[UIColor greenColor];

    NSShadow *shadow=[[NSShadow alloc] init];

    shadow.shadowColor=[UIColor blueColor];

    shadow.shadowOffset=CGSizeMake(1, 1);

    

    

    dict[NSShadowAttributeName]=shadow;

    

    [appearance setTitleTextAttributes:dict forState:UIControlStateNormal];

}

 

+(void)setupNavigationBarTheme{

    

    

    UINavigationBar *apperarance=[UINavigationBar appearance];

    [apperarance setBackgroundImage:[UIImage imageNamed:@"bar_background"] forBarMetrics:UIBarMetricsDefault];

    

    NSMutableDictionary *dict=[NSMutableDictionary dictionary];

 

    dict[NSFontAttributeName]=[UIFont systemFontOfSize:18];

    dict[NSForegroundColorAttributeName]=[UIColor redColor];

   NSShadow *shadow= [[NSShadow alloc]init];

    shadow.shadowColor=[UIColor grayColor];

    shadow.shadowOffset=CGSizeMake(1, 1);

    

    dict[NSShadowAttributeName]=shadow;

    

    [apperarance setTitleTextAttributes:dict];

    

}

 

IOS 自定义全局navigaitonbar 属性样式

标签:io   ar   color   os   sp   for   on   art   bs   

原文地址:http://www.cnblogs.com/zhibin/p/4156648.html

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