MJNavigationController.m 773 B

12345678910111213141516171819202122232425
  1. // 代码地址: https://github.com/CoderMJLee/MJRefresh
  2. // MJNavigationController.m
  3. // MJRefreshExample
  4. //
  5. // Created by MJ Lee on 15/3/5.
  6. // Copyright (c) 2015年 小码哥. All rights reserved.
  7. //
  8. #import "MJNavigationController.h"
  9. @implementation MJNavigationController
  10. #pragma mark 一个类只会调用一次
  11. + (void)initialize
  12. {
  13. // 1.取出设置主题的对象
  14. UINavigationBar *navBar = [UINavigationBar appearanceWhenContainedInInstancesOfClasses:@[MJNavigationController.class]];
  15. // 2.设置导航栏的背景图片
  16. [navBar setBackgroundImage:[UIImage imageNamed:@"NavBar64"] forBarMetrics:UIBarMetricsDefault];
  17. // 3.标题
  18. [navBar setTitleTextAttributes:@{NSForegroundColorAttributeName : [UIColor whiteColor]}];
  19. }
  20. @end