I have five tabs in my tab Bar Application. I have give access to 3rd tab on if user enters correct password in popOverController. I wanted to present that pop Over Controller when user taps(selects) that 3rd tab. How should i do it.
Thanks in advance.
I have five tabs in my tab Bar Application. I have give access to
Share
Take a look at the UITabBarControllerDelegate Protocol Reference.
In particular consider implementig the
tabBarController:didSelectViewController:method of the beforementioned protocol, or even better thetabBarController:shouldSelectViewController:method.