I have a simple app that uses a UITabBar controller for navigation. Let's say I have ViewA and ViewB on the tabBar. Everything works fine. However I also want to add a UIButton to ViewA that will present the user with ViewB when pressed.
In other words there are two ways to get to ViewB from ViewA. The first is from the tabBar and the second is by pressing the button in ViewA.
What would be the best way of accomplishing this. Thanks.