benhowdle89
benhowdle89

Reputation: 37454

Identify iOS view controller type

Can't think what to call this type of view controller/UIView. It's the "new/replied" part of my screenshot which is from the standard Apple calendar app on iOS7.

Screenshot: http://cl.ly/XIbb

Upvotes: 0

Views: 58

Answers (2)

NRitH
NRitH

Reputation: 13893

It's probably a UITableViewController that has a UISegmentedController as the navigation bar's titleView. That's the easiest way to do it.

Upvotes: 1

maranas
maranas

Reputation: 1416

It's just the navigation item with a segmented control. See the titleView property of the navigation item: https://developer.apple.com/library/ios/documentation/uikit/reference/UINavigationItem_Class/Reference/UINavigationItem.html#//apple_ref/occ/instp/UINavigationItem/titleView

Upvotes: 1

Related Questions