Reputation: 28157
What is this control? Or is it something that has been custom made? I see it in the Twitter and several other applications. I'm referring to the two triangles, and if you've ever used them, they refresh the view below them, usually going through a list of content items.
(I'm not referring to the navigation controller with a back button)
Upvotes: 0
Views: 98
Reputation: 10302
Its right there in Apple's NavBar sample code. You have the entire source code for the project. Search for NavBar within the Documentation and API reference item under the Help menu of Xcode 4.
Upvotes: 1
Reputation: 14662
They are UISegmentedControl
s with custom images and the style set to UISegmentedControlStyleBar
.
Upvotes: 3