Creating a Table with Rows and Columns in iOS

后端 未结 4 790
渐次进展
渐次进展 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:33

    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.

提交回复
热议问题