in ios5 storyboards, UITabControllers come pre-made with two relationships for the First tab and Second tab.
Is it possible to do relationships like this for a UISegmentedControl ?
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.
No you can’t do this with storyboards, you would need to write the code to switch between views manually.
UITabBarControlleris what manages the display of multipleUIViewControllerinstances via the use of aUITabBar. There is noUISegmentedControlControllerclass.To accomplish this, you will need two views in your view controller, and switch between them on the
UISegmentedControlValue Changedevent.