我可以在两个UITableViewCell之间构建一个UITableView吗?

时间:2013-03-29 09:50:47

标签: ios uitableview detail

我创建了一个标准的UITableView,一个单元格的选择必须在两个tableviewCell之间留下一个细节子表。我能怎么做?你有什么建议吗?

1 个答案:

答案 0 :(得分:0)

使用insertRowsAtIndexPaths在所选单元格的上方/下方插入一个新行。

[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationBottom];

并根据您的要求自定义方法。