MTRootController.m 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. //
  2. // MTRootController.m
  3. //
  4. // Created by Simon on 2019/3/22.
  5. // Copyright © 2019 Simon. All rights reserved.
  6. //
  7. #import "MTRootController.h"
  8. #import "RDVTabBarController.h"
  9. #import "RDVTabBarItem.h"
  10. #import "MTMyViewController.h"
  11. @interface MTRootController ()
  12. @end
  13. @implementation MTRootController
  14. - (void)viewDidLoad {
  15. [super viewDidLoad];
  16. [self setupViewControllers];
  17. }
  18. #pragma mark - Methods
  19. - (void)setupViewControllers {
  20. MTMyViewController *meVC = [MTMyViewController new];
  21. [self setViewControllers:@[meVC]];
  22. [self customizeTabBarForController];
  23. }
  24. - (void)customizeTabBarForController {
  25. NSArray *tabbarTitles = @[@"消息",@"通讯录",@"工作",@"我的"];
  26. NSArray *tabBarItemImages = @[
  27. @"tabbar_home",
  28. @"tabbar_order",
  29. @"tabbar_shop",
  30. @"tabbar_me"
  31. ];
  32. NSInteger index = 0;
  33. for (RDVTabBarItem *item in [[self tabBar] items]) {
  34. UIImage *selectedimage = [UIImage imageNamed:[NSString stringWithFormat:@"%@_selected",
  35. [tabBarItemImages objectAtIndex:index]]];
  36. UIImage *unselectedimage = [UIImage imageNamed:[NSString stringWithFormat:@"%@",
  37. [tabBarItemImages objectAtIndex:index]]];
  38. [item setFinishedSelectedImage:selectedimage withFinishedUnselectedImage:unselectedimage];
  39. [item setSelectedTitleAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12], NSForegroundColorAttributeName : HColor(@"#0079FE")}];
  40. [item setUnselectedTitleAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12], NSForegroundColorAttributeName : HColor(@"#808080")}];
  41. item.titlePositionAdjustment = UIOffsetMake(0,3);
  42. item.imagePositionAdjustment = UIOffsetMake(0,0);
  43. item.title = tabbarTitles[index];
  44. index++;
  45. }
  46. }
  47. @end