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 trialMahmoud El-Set
11,602 PointsStuck on creating tab bar programmatically
Challenge text:
We just saw how to change tabs by tapping on them, but we can also do this programmatically using the selectedIndex property of UITabBarController. The tab bar controller in the example below has three tabs. Use dot-notation or the setSelectedIndex: method to set the 3rd tab as the selected tab. Note: The tabs are indexed just like arrays, meaning the 1st tab is at index 0.
and code:
<p>
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'.
}
@end </p>
And I have tried:
<p> [tabBar setSelectedItem:[tabBar.items objectAtIndex:2]]; </p>
Please help!
2 Answers
Stone Preston
42,016 Pointsyou are using the wrong method. you need to use the setSelectedIndex method of the tabBar controller not setSelectedItem. you also need to call the method on the tabBarController property, not the tabBar itself
- (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'.
//the challenge asks you to use setSelectedIndex
[self.tabBarController setSelectedIndex:2];
}
Mahmoud El-Set
11,602 PointsThank you very much!