AlexanderZ
AlexanderZ

Reputation: 2158

grid view for uiviews

I have about 30 views in my app and via navigationBar I can move from first to the lust one and back.

  1. I want to add a button in a NavigationBar that will popup a gridview with previews of all the views to let user choose any view and move to the chosen one.

  2. I also want to let user change the sequence of the views inside that gridview. And let the user mark some of the views as unseen in order to take them away from original sequence of views but not from the gridview.

  3. Also let user change gridview to 2x2, 3x3 or 4x4.

What is the best way to make it possible?

Thank you beforehand. Sorry for my English...

Upvotes: 1

Views: 747

Answers (1)

jsd
jsd

Reputation: 7703

You want UICollectionView with a grid layout. See http://www.appcoda.com/ios-programming-uicollectionview-tutorial/ for an example implementation.

Upvotes: 1

Related Questions