I have an application that has 4 views that are toggled by Tab Bar navigation. The first view (Tab bar Item 1) has a button on its view that when clicked, needs to move the user to the 2nd view (Tab bar item #2). What are the steps needed to do such a thing?
Here is a screenshot of the button and as you can see, nothing has been attached yet. Would love to know the best way to hook up this button either through IB or code.
Thanks in advance

I’m not sure why you would use a custom button to replicate the functionality of the button in the tab-bar, but in a nutshell what you need to do is:
IBActionmethod in the view-controller for the first tab-bar item (just click and drag from the circle up to “File’s Owner”, which should be your view-controller class).[myTabBarController setSelectedViewController: tab2Controller](alternately you can use[myTabBar setSelectedIndex:1]to do the same thing).That’s all there is to it.