码迷,mamicode.com
首页 > 其他好文 > 详细

设置导航条标题及背景图片

时间:2017-03-04 18:33:52      阅读:240      评论:0      收藏:0      [点我收藏+]

标签:sde   white   UI   blog   通过   view   tab   sel   interface   

#import "XMGNavigationViewController.h"

@interface XMGNavigationViewController ()

@end

@implementation XMGNavigationViewController
+ (void)load
{
    UINavigationBar *navBar = [UINavigationBar appearanceWhenContainedIn:self, nil];
    
    // 只要是通过模型设置,都是通过富文本设置
    // 设置导航条标题 => UINavigationBar
    NSMutableDictionary *attrs = [NSMutableDictionary dictionary];
    attrs[NSFontAttributeName] = [UIFont boldSystemFontOfSize:20];
    [navBar setTitleTextAttributes:attrs];
    
    // 设置导航条背景图片
    [navBar setBackgroundImage:[UIImage imageNamed:@"navigationbarBackgroundWhite"] forBarMetrics:UIBarMetricsDefault];
}

 

设置导航条标题及背景图片

标签:sde   white   UI   blog   通过   view   tab   sel   interface   

原文地址:http://www.cnblogs.com/xufengyuan/p/6501998.html

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