Reputation: 4127
Is there a equivalent to the below control in IOS, basically I am looking to display a list of items either as a list view (table) or as a coverflow view.?
Upvotes: 0
Views: 430
Reputation: 44633
You can look at UISegmentedControl
.
Although you can consider what Apple has done for its music app. In portrait, it's a list view (UITableView
) and in landscape, it's a cover flow view.
Upvotes: 1