Creating a Table with Rows and Columns in iOS

后端 未结 4 738
渐次进展
渐次进展 2021-02-10 04:14

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:

4条回答
  •  花落未央
    2021-02-10 04:27

    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

提交回复
热议问题