我在UITableView内部的UITableView中设置我的json数据
但我的数据是
----------- ----------- ----------
| Data 1 | | Data 2 | | Data 3 |
| | | | | |
----------- ----------- ----------
----------- ----------- ----------
| Data 4 | | Data 5 | | Data 6 |
| | | | | |
----------- ----------- ----------
但我希望我的数据显示如下(表示垂直) -
----------- ----------- ----------
| Data 1 | | Data 3 | | Data 5 |
| | | | | |
----------- ----------- ----------
----------- ----------- ----------
| Data 2 | | Data 4 | | Data 6 |
| | | | | |
----------- ----------- ----------
我将每个Indexpath.row的数据数组从CollectionView cellForRowAtIndexPath
传递到TableView cellForRowAtIndexPath
并且在TableView cellForRowAtIndexPath
我打印的数据是我上面提到的每个Indexpath.row。