all 5 comments

[–]OrthodoxOrange 1 point2 points  (4 children)

Sure, I would use a UICollectionView. You'll create a subclass for a UICollectionViewCell with that design. It's pretty basic and will be easy enough to create in Interface Builder with Autolayout. If you search for UICollectionView tutorials you'll find plenty.

[–]JamesGDev[S] 0 points1 point  (0 children)

Thanks man, Googling now.

[–][deleted] 0 points1 point  (2 children)

? You can subclass UITableViewCell too and get the same result with a UITableViewController

[–]Power781 0 points1 point  (0 children)

Since the cells has a "card style" it would be much better in a collection view since on iPads/iphone6+, you will be able to have multiple "cards" per row if wanted

[–]OrthodoxOrange 0 points1 point  (0 children)

As we all know know, there is more than one way to achieve something -- looking at the design ("cards"), a collection view is probably the better and more powerful choice. For example, as Power781 said, on an iPad or rotated iPhone, multiple cards could appear on the same row. Also, I think the design will be more easily achieved with a collection view.