Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I would like to set an action to specific tab on UITabBarController. How can I do this? See my code below: Update with code

@interface AccountTabViewController : UIViewController <UITabBarControllerDelegate, UITabBarDelegate>
{
    IBOutlet UITabBarController *tabController;
    IBOutlet UITabBar *tabBar;
}

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
    if(tabBarController.selectedIndex == 0) 
    {
        [self dismissModalViewControllerAnimated:YES];
    }
}

It never get into the method! Please help.

share|improve this question

2 Answers

up vote 5 down vote accepted

See UITabBarDelegate reference and UITabBarControllerDelegate Protocol Reference.
The method you are looking for is

- (void)tabBar:(UITabBar *)tabBar didSelectItem:(UITabBarItem *)item {
}

or one of these:

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController {
}

- (BOOL)tabBarController:(UITabBarController *)tabBarController shouldSelectViewController:(UIViewController *)viewController {
}

Also, UITabBarController reference.

share|improve this answer
for some reason it's not getting into the method! – HardCode Sep 9 '11 at 18:47
Make sure your definition has <UITabBarControllerDelegate,UITabBarDelegate> like so: @interface iPhoneHomeViewController : UIViewController <UITabBarControllerDelegate,UITabBarDelegate> { }. And you have to set the delegate property of the UITabBar / UITabBarController to the class with the delegate methods. – chown Sep 9 '11 at 18:52
I update the question with the code, didn't work! – HardCode Sep 9 '11 at 19:08
Do you have [tabController setDelegate:self];? Also, you can use this to dismiss the current ViewController from that ViewController: [self.parentViewController dismissModalViewControllerAnimated:YES]; – chown Sep 9 '11 at 19:18
@HardCode, read carefully. You should set UITabBarController's delegate. – an0 Sep 9 '11 at 19:20
show 3 more comments

Look at UITabBarControllerDelegate method:

- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
   if (tabBarController.selectedIndex == 0) 
   {
     // First Tab is selected do something
   }
}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.