Lt Muffin360
Lt Muffin360

Reputation: 31

How do I create tabs for an iPhone app without using the Tab Bar?

I am teaching myself iOS5 with Xcode 4.2.1 and did a bit of digging into tabs. I found information on tab bars and how to make them do a lot of neat things, however, I have not found any information on how to create this type of tab:

enter image description here

I came to the conclusion that this type of tab cannot be created using a Tab Bar app or utilizing the toolbar in some fancy way, based on the research I have done. How can I create this type of tab for an iPhone app?

Upvotes: 0

Views: 167

Answers (1)

thvanarkel
thvanarkel

Reputation: 1611

You can use multiple customized 'UIButton' objects, or a customized 'UISegmentedControl', that when tapped change the contents of 'UIView' which gives you the desired effect.

Upvotes: 1

Related Questions