• Stars
    star
    170
  • Rank 223,357 (Top 5 %)
  • Language
    Objective-C
  • Created over 13 years ago
  • Updated over 11 years ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Create TabBarController with more customization than UITabBarController.

About

LeveyTabBarController is more customizable than UITabBarController.

it can set transparent tabbar, set background, insert/remove tab, set tabbar item with image as you wish. Enjoy it : )

How to Use


Initialization

leveyTabBarController = [[LeveyTabBarController alloc] initWithViewControllers:YOUR_CONTROLLERS imageArray:YOUR_IMAGES];

Custom Background Image

[leveyTabBarController.tabBar setBackgroundImage:[UIImage imageNamed:@"tabbarbg.png"]];

Make TabBar Transparent

[leveyTabBarController setTabBarTransparent:YES];

Add a Tab

UIViewController *vc = [[FirstViewController alloc] init];
[self.leveyTabBarController insertViewController:vc withImageDic:YOUR_IMAGES atIndex:YOUR_INDEX];
[vc release];

###Screenshots⤵

0

1


And always, have a nice day!