Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a tabcontroller with 5 button. Each of the tabcontroller has a tabview controller.

One The tabviewcontroller should behave differently depending on the tab being pressed.

For example, if the tab is location then data should be sorted based on location. If the tab is alphabet then view should be sorted based on alphabet.

I then write a code on the viewController

-(void)viewWillAppear:(BOOL)animated
{
    [super viewDidLoad];
    [BNUtilitiesQuick parseXMLFileAtURL:@"http://isikota.com/BusinessSerialized.xml"];
    [BNUtilitiesQuick UtilitiesQuick].BizsToDisplay = [BNUtilitiesQuick searchObjectsInContext:@"Business" :nil :@"Title" :YES];
    NSLog(@"%@",[self tabBarController]);
    if ([[self tabBarController]selectedIndex]==0)
    {
    }
    NSLog(@"%d",[[self tabBarController]selectedIndex]);

    // Do any additional setup after loading the view from its nib.
}

Now that [[self tabBarController]selectedIndex] works perfectly if not for one problem. Rather than pointing out the current selectedIndex, it's pointing out the previous selected Index

Say I am now selecting tab 0 and I click tab 4 that NSLog will display 0

How to solve this then? I want to know the tab being pressed

share|improve this question

1 Answer

up vote 1 down vote accepted

By using this delegate method you will be getting your selected index:

# enter code here
- (void)tabBarController:(UITabBarController *)tabBarController didSelectViewController:(UIViewController *)viewController
{
    NSLog(@"sff %d",tabBarController.selectedIndex);
}
share|improve this answer
So the delegate should be the files' owner of the tabController – Jim Thio May 30 '11 at 11:25
What protocol does that thing is defined? – Jim Thio May 30 '11 at 13:16

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.