views:

233

answers:

2

How does the App Store create the "Top Paid" "Top Free" and "Release Date" buttons?

They look like UIBarButtonItems in a UIToolbar but with a catch. The buttons merge together into one longer button. If it is a UIToolbar, I'm not sure how they connect the buttons so that they appear together like a tab bar ...

+4  A: 

Don't have the iPhone right here, but I think what you want is the UISegmentedControl. Does it look like this?

UISegmentedControl

Anurag
That's right. I'd seen the 'default' one but missed the segmentedControlStyle property for the smaller, toolbar version. Thanks!
Luther Baker
+1  A: 

I think they must be using a UISegmentedControl

epatel