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 trial

iOS Build a Self-Destructing Message iPhone App Designing and Starting the App A Storyboard with a Tab Bar Controller

ivan hernandez
PLUS
ivan hernandez
Courses Plus Student 2,298 Points

Help with UITabBarController

Can't do second step of the practice, I'm using this code

import "MainViewController.h"

import "UITabBarItem.h"

@implementation MainViewController

  • (void)viewDidLoad { [super viewDidLoad];
    NSArray *tabBarItems = self.tabBarController.tabBar.items; [self.tabBarController setSelectedIndex:2]; UITabBarItem *tab = [[UITabBarItem alloc] init]; [self.tabBarItems setSelectedIndex: tab];

any ideas what is wrong with it, thanks.

1 Answer

Stone Preston
Stone Preston
42,016 Points

the task states: ** 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.**

so the left side you have is correct, however you dont have to allocate and init your tab item, you just need to set it using

UITabBarItem *tab = [tabBarItems objectAtIndex:self.tabBarController.selectedIndex];