barfoon
barfoon

Reputation: 28157

iPhone SDK - what is this control? Is it custom?

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)

enter image description here

Upvotes: 0

Views: 98

Answers (2)

Bourne
Bourne

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

gcamp
gcamp

Reputation: 14662

They are UISegmentedControls with custom images and the style set to UISegmentedControlStyleBar.

Upvotes: 3

Related Questions