I want to show 3 different screens depending on the option user selects

They are 1. Type Prescription 2.Scribble Prescription 3. Prescription Form
How can i switch views for those 3?
Thanks
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
UITabBarControllers like SplitViewControllers were intended to only be the Root View Controller and hence you cannot nest a TabBarController in another view, but you can however nest a UITabBar in a view.
I added the Tabbar to the details view at the bottom, a Navigation bar at the top and then a placeholder view between them. All in Interface Builder!, You will want to switch everything on with the autosize on the Placeholder view.
Next, Implement the UITabBarDelegate, you will need:
from that you can use item.tag which if you give each item a unique tag in Interface Builder will let you know which tab the user clicked. I setup defined values for mine:
Then you will then want to…
}
}
These are my notes that i learned from a similar question, search harder next time