0

I'm doing an app that retrives data from a server and show it in a view using a tableview. What i'd really like to do is a view showing the content like images side by side. Just like this image: image from Untappd App

Is there some native iOS component like TableView, spefic to this concept? What should be the better approach to get to this? Thanks!

Cilas
  • 172
  • 1
  • 14

1 Answers1

0

Yep, take a look at UICollectionView. It's sort of like a generalized tableview that can support a number of scrolling layout types.

For the mockup that you posted, you'll probably want to use a UICollectionViewFlowLayout configured with the cell size and horizontal/vertical spacing you need.

Antonio
  • 988
  • 1
  • 7
  • 12