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 have a tabbar controller with 5 tabs.In my 3rd tab i am clicking a button and navigate to first tab(same time i am selection the Tab button at index0 using the below code)

   self.tabBarController.selectedViewController = [self.tabBarController.viewControllers objectAtIndex:0];

i have tried below code also

[appdelegate.tabBarController setSelectedIndex:0];

My problem is...On clicking the 3rd Tab button again,there i can see the view for First tab(but if i click again the original view for third tab comes) What may be the issue,and how can i Fix that ?

share|improve this question
are you using both lines of code? you mentioned above – ÐąrέÐέvil Dec 7 '12 at 9:36
did you tried this code self.tabBarController.selectedIndex = 0 – arthan.v Dec 7 '12 at 10:59
@ ÐąrέÐέvil nope..i have tried both,but one at a time – Nithin MK Dec 10 '12 at 6:18
@ arthan.v tried now...same issue – Nithin MK Dec 10 '12 at 6:19

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.