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 trialhunche
3,339 PointsChallenge task 1 of 3 We just saw how to change tabs by tapping on them, but we can also do this programmatically using
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.
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'. //my answer is below ?????? But , these 2 lines are wrong,I don't know ?????????
self.tabBarController.selectedIndex = 2; self.view = tabBarController.view;
} @end
1 Answer
Stone Preston
42,016 Pointsremove the line that sets the view. you dont need that
#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.selectedIndex = 2;
}
@end