Pradeep
Pradeep

Reputation: 4127

switch view control in IOS

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.?

Switch view

Upvotes: 0

Views: 430

Answers (1)

Deepak Danduprolu
Deepak Danduprolu

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

Related Questions