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