标签: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