For an iPhone app how can I create a tab view programmatically, preferably in Objective-C?
How can I create a tab view programmatically on iOS
9.4k Views Asked by Kiran At
2
There are 2 best solutions below
0

This is how we have to create tabbar programmatically
UINavigationController *BandNavigationController3;
AudienceSettingsViewController *audienceSettingsViewView =[[AudienceSettingsViewController alloc]initWithNibName:@"AudienceSettingsViewController" bundle:nil];
BandNavigationController3 = [[UINavigationController alloc]initWithRootViewController:audienceSettingsViewView];
BandNavigationController3.tabBarItem.title = @"Settings";
BandNavigationController3.tabBarItem.image = [UIImage imageNamed:@"settings.png"];
[BandNavigationController3.tabBarItem initWithTabBarSystemItem:UITabBarSystemItemFavorites tag:4];
BandNavigationController3.navigationBar.hidden = YES;
[bandTabBarArray addObject:BandNavigationController3];
[BandNavigationController3 release];
[audienceSettingsViewView release];
[tabBarController setViewControllers:bandTabBarArray];
[bandTabBarArray release];
It's quite simple to create a UITabBar via the UITabBarController. The following example should work within your AppDelegate class.
App Delegate Interface
Firstly, within the interface, we'll define our UITabBarController.
App Delegate Implementation
Then, within the implementation file's
application:didFinishLaunchingWithOptions:
method, we'll then initialise our tab bar controller.Next, you need to create the view controllers that you want to add to the tab bar controller. We'll need to add some information into these to set the tab's title/icon, but I'll come back to that at the end.
As the setViewControllers:animated: method requires an array of view controllers, we'll add our view controllers to an array and then release them. (As the NSarray will retain them.)
Then simply provide the UITabBarController with the array of view controllers and add it to our window.
Finally, make sure you call
[tabBarController release];
within yourdealloc
method.View Controller Implementation
Inside each of your view controllers, you'll also want to set the title and icon for the tab within the init method as follows: