I believe you could also achieve this with a UICollectionView, in addition to the already mentioned UiTableView with divided UITableViewCells suggestion.
I believe you could also achieve this with a UICollectionView, in addition to the already mentioned UiTableView with divided UITableViewCells suggestion.
UITableViews were designed before the introduction of the iPad. Apple decided to not support columns of cells because the screen on iPhones/iPods is too small.
NSTableView, the equivalent class on Mac OS, does support grids of cells.
As the other poster said, so does NSCollectionView.