Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialDiego Aguirre
13,211 PointsThis is regarding setting a tab programmatically. I don't quite understand the question.
Here is the question :
//The tabs are stored in an array named tabBarItems (line 9). Declare a UITabBarItem variable named tab and set it from tabBarItems. Use the selectedIndex we just set as the index for the tab you get from the tabBarItems array.//
And here is what I have so far regarding the code :
import "MainViewController.h"
import "UITabBarItem.h"
@implementation MainViewController
-
(void)viewDidLoad { [super viewDidLoad];
NSArray *tabBarItems = self.tabBarController.tabBar.items;
// Add your code below! The property for MainViewController's // tab bar controller is named 'tabBarController'. self.tabBarController [self.tabBarController setSelectedIndex:2];
UITabBarItem *tab = tabBaritems[2]; }
#import "MainViewController.h"
#import "UITabBarItem.h"
@implementation MainViewController
- (void)viewDidLoad {
[super viewDidLoad];
NSArray *tabBarItems = self.tabBarController.tabBar.items;
// Add your code below! The property for MainViewController's
// tab bar controller is named 'tabBarController'.
[self.tabBarController setSelectedIndex:2];
UITabBarItem *tab = tabBarItems;
}
@end
1 Answer
landonferrier
25,097 PointsDiego, here is a full template for the social network application: Click Here.
Diego Aguirre
13,211 PointsDiego Aguirre
13,211 PointsNever mind I found my issue forgot to capitalize the I in tabBarItems.
Here is the right code in case anyone is interested. UITabBarItem *tab = tabBarItems[2];
Although I don't understand the purpose of the following code. Seems redundant?
[self.tabBarController setSelectedIndex:2];