1

I am in the process of designing an application that will look like the image below. I am wondering if there is anything out there that will help me create this style of a table. I have seen three20 and other sources. I already figured out how to load images from the website I need, using JSON, now I need to put it into that view style. . It looks like it may be a basic gallery layout, but I am not sure where the best place to start may be.

https://i.stack.imgur.com/agoGx.jpg

EDIT: Thanks guys, this ended up being quite helpful as well: http://www.scott-sherwood.com/ios-6-uicollectionviewcontroller/

Paulius Dragunas
  • 1,702
  • 3
  • 19
  • 29

3 Answers3

1

Try to check UICollectionView https://developer.apple.com/library/ios/#documentation/WindowsViews/Conceptual/CollectionViewPGforIOS/Introduction/Introduction.html

Andrea
  • 26,120
  • 10
  • 85
  • 131
0

Have a look at UICollectionView. It's perfect for that sort of thing.

Ask again with specific questions if you have them.

mattjgalloway
  • 34,792
  • 12
  • 100
  • 110
0

The new UICollectionView framework is made for things like this, and it's really easy to use. The only downside to using a collection view is that it's only available on iOS 6+, so if you want backwards compatibility, you might want to look into third-party open source frameworks.

Here's a great tutorial on UICollectionViews to help you get started.

http://www.adoptioncurve.net/archives/2012/09/a-simple-uicollectionview-tutorial.php

Janum Trivedi
  • 1,660
  • 2
  • 16
  • 24