123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- //
- // MTRootController.m
- //
- // Created by Simon on 2019/3/22.
- // Copyright © 2019 Simon. All rights reserved.
- //
- #import "MTRootController.h"
- #import "RDVTabBarController.h"
- #import "RDVTabBarItem.h"
- #import "MTMyViewController.h"
- @interface MTRootController ()
- @end
- @implementation MTRootController
- - (void)viewDidLoad {
- [super viewDidLoad];
- [self setupViewControllers];
- }
- #pragma mark - Methods
- - (void)setupViewControllers {
-
- MTMyViewController *meVC = [MTMyViewController new];
- [self setViewControllers:@[meVC]];
-
- [self customizeTabBarForController];
- }
- - (void)customizeTabBarForController {
-
- NSArray *tabbarTitles = @[@"消息",@"通讯录",@"工作",@"我的"];
- NSArray *tabBarItemImages = @[
- @"tabbar_home",
- @"tabbar_order",
- @"tabbar_shop",
- @"tabbar_me"
- ];
- NSInteger index = 0;
- for (RDVTabBarItem *item in [[self tabBar] items]) {
- UIImage *selectedimage = [UIImage imageNamed:[NSString stringWithFormat:@"%@_selected",
- [tabBarItemImages objectAtIndex:index]]];
- UIImage *unselectedimage = [UIImage imageNamed:[NSString stringWithFormat:@"%@",
- [tabBarItemImages objectAtIndex:index]]];
- [item setFinishedSelectedImage:selectedimage withFinishedUnselectedImage:unselectedimage];
- [item setSelectedTitleAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12], NSForegroundColorAttributeName : HColor(@"#0079FE")}];
- [item setUnselectedTitleAttributes:@{NSFontAttributeName : [UIFont systemFontOfSize:12], NSForegroundColorAttributeName : HColor(@"#808080")}];
-
- item.titlePositionAdjustment = UIOffsetMake(0,3);
- item.imagePositionAdjustment = UIOffsetMake(0,0);
-
- item.title = tabbarTitles[index];
- index++;
- }
- }
- @end
|