How to I make TableView Cells spanning over multiple rows?
is there a way to create a tableview in which a cell may span over more than one row. As the two "X" here?
1 2 3 4 5
2 1 X 1 2
1 2 开发者_运维百科X 4 5
This scenario is only duplicate on first glimpse.
How should the above table be splitted into nested tables without misaligning columns? You would have to put the first row into a separate table which means that the columns to not say aligned. Imagine this:
1 222 3 4 5
2 1 X 1 2
1 2 X 4 5
You wont get both "4" cells aligned.
精彩评论