我创建了一个标准的UITableView,一个单元格的选择必须在两个tableviewCell之间留下一个细节子表。我能怎么做?你有什么建议吗?
答案 0 :(得分:0)
使用insertRowsAtIndexPaths在所选单元格的上方/下方插入一个新行。
[tableView insertRowsAtIndexPaths:[NSArray arrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationBottom];
并根据您的要求自定义方法。