I would like to create a table in iOS that have some rows and columns. We also have an option to add amounts to the table. A screenshot of the sample table is posted below:
It would not be an easy solution but you can use a rotated (horizontal) UITableView
inside each cell of a table view (vertical) just like the Pulse app. Using only labels makes it easy to manage but the "excel" look could be harder if you're planning handling events like selecting rows, sort...
Here's a two part tutorial on how to use horizontal tables (http://www.raywenderlich.com/) :
part 1 - part 2
I created a table structure similar to this using tableview and scrollview .Think that could be helpful to you
You could get the sample project here
https://drive.google.com/folderview?id=0B-brvnZfBXwTU21VbmNNcnRSU2M&usp=sharing
In ios6 you can use a UICollectionView
with a UICollectionViewFlowLayout
to archive this. A UICollectionView
works very similar to a UITableView
, but gives you more control over how the cells should be displayed and aligned.
There is an open source solution on GitHub that supports iOS 4.3+ if you are still looking for options. I haven't actually used it, but it looks like works like UICollectionView.
PSTCollectionView