_tabBarController = [[BaseTabBarViewController alloc] init];
self.tabBarController.viewControllers = [[NSMutableArray alloc] initWithObjects:sellerNav,cardNav,loginNav, nil];
self.tabBarController.selectedIndex = 0;
self.window.rootViewController = self.tabBarController;
[[UITabBar appearance] setBackgroundImage:[UIImage imageNamed:@"tabbar_bg.png"]];
[[UITabBar appearance] setSelectionIndicatorImage:[[[UIImage alloc] init] autorelease]];
[[UITabBarItem appearance] setTitleTextAttributes:@{ UITextAttributeTextColor : [UIColor colorWithWhite:141.0/255.0 alpha:1.0 ], UITextAttributeFont : [UIFont boldSystemFontOfSize:10.0] }
forState:UIControlStateNormal];
[[UITabBarItem appearance] setTitleTextAttributes:@{ UITextAttributeTextColor : [UIColor blackColor], UITextAttributeFont : [UIFont boldSystemFontOfSize:10.0] }
forState:UIControlStateSelected];
UITabBarController TabBar初始化
最新推荐文章于 2021-02-13 21:48:38 发布