I'm trying to implement a UITablewView with fixed headers and a fixed set of columns. Basically, something like this:
http://www.novasoftware.com/download/jquery_fixedtable/jQuery_FixedTable_Demo.htm
Looking f开发者_Python百科or suggestions.
UITableView
does not support multiple columns.
I recommend using a UIWebView
or possibly a UIScrollView
to display data in such a format.
Take a look at AQGridView. (Assuming you're targeting iOS 6 or later, use UICollectionView
精彩评论