Does anyone know how to add a scope bar to a UITableView? The App Store app does this sometimes, like in the picture referenced (I am not allowed to post images, sorry).

I would like to use this scope bar to add sorting options for the elements in the tableview. This would be more convenient than having a toolbar with a segmentedcontrol.

I just don't know how to implement this. I don't even know the name of the element (I'm calling it scope bar because it looks just like the scope bar of a UISearchBar, but it is not).

Thanks in advance.

Picture: http://img27.imageshack.us/img27/6163/img0043a.png

link|improve this question

70% accept rate
feedback

3 Answers

up vote 0 down vote accepted

The element is a UISegmentedControl with the UISegmentedControlStyleBar style. You can set the tintColor property to get the color desired. Just put the view above the table view and you can get something that looks like that screenshot.

link|improve this answer
1  
Thanks for that. I just don't know what that tintColor is, do you? – Aloha Silver Jul 5 '10 at 2:46
You could experiment around until you found something thats similar to the one in the App Store app. – indragie Jul 5 '10 at 3:16
feedback

Actually, unlike what others have said, this UISegmentedControl's .segmentedControlStyle property is set to an undocumented value of 7.

 theSegCtrl.segmentedControlStyle = 7;

But @Macatomy's answer is more AppStore-safe (although Apple can't detect this anyway).

link|improve this answer
That's interesting. How does this undocumented style differ from the documented UISegmentedControlStyleBar style? – indragie Jul 5 '10 at 0:52
Really interesting. And it really works. It sets the button colors to those pictured, but I don't know of any other differences. And how did you know about that line of code, KennyTM? Thanks. – Aloha Silver Jul 5 '10 at 2:48
2  
@Aloha: Trial and error :) – KennyTM Jul 5 '10 at 11:03
Hey, has anyone submitted and had rejected any apps because of this? – lol Jan 21 at 5:37
feedback

UISegmentedControl

You create it, set up its segments, and set its delegate. The delegate then takes some sort of action every time the selected segment changes.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.