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

iOS 导航栏的属性设置

时间:2016-10-03 21:19:12      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:

  iOS中设置导航栏背景、字体属性

---------------------------------------------------

1、自定义导航控制器作为基类,在 + (void)initialize 方法中设置偏好设置,不要在 + (void)load 方法中设置

+ (void)initialize {

    // 设置 两侧按钮 的颜色tintColor(标题除外)

    [[UINavigationBar appearance] setTintColor:FGCOLOR]; // FGCOLOR 设置返回按钮的颜色tintColor(标题除外)

    // 导航栏 背景色

    [[UINavigationBar appearance] setBarTintColor:BGCOLOR];

    // 标题属性

    [[UINavigationBar appearance] setTitleTextAttributes:@{

                                                           NSForegroundColorAttributeName:[UIColor colorWithRGBHex:0x333333],

                                                           NSFontAttributeName : [UIFont systemFontOfSize:18]

                                                           }];

    

    // 设置 导航栏按钮 文字颜色(标题除外)

    /*

    UIBarButtonItem *item = [UIBarButtonItem appearance];

    NSDictionary *atts = @{

                           NSForegroundColorAttributeName : [UIColor colorWithRGBHex:0xff0000]

                           };

    

    [item setTitleTextAttributes:atts forState:UIControlStateNormal];

     */

}

iOS 导航栏的属性设置

标签:

原文地址:http://www.cnblogs.com/jaly2012/p/5929571.html

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