I am creating a Tabbar application as shown.

On selecting the county a tab bar is shown as follows:

Now i wish to change to another county…currently there is just one…but there are many..

I get the following screen when i push on didselectRowatIndex method

I tried hiding the tabbar but it increases the complexity of my program and it slows down considerably.
Please can any one guide me in the correct direction as to how to handle this behavior.
“when i push on didselectRowatIndex”
on
didSelectRowAtIndexpath, lets assume you have madeTab2Controllerdont do PUSH, do a
[self presentModalViewController:Tab2Controller animated:NO];to comeback, you do:
[self.tabBarController dismissModalViewController:NO];hope this helps..!!
Best of Luck!!