UITableView删除分组最后一个元素,需要把分组同时删除。
1.首先在数据源上删除数据。
2.UI上删除cell:
[tableView deleteRowsAtIndexPaths:[NSArrayarrayWithObject:indexPath] withRowAnimation:UITableViewRowAnimationAutomatic];
3.删除数据源上分组的元素。
4.UI上删除分组元素:
[tableView deleteSections:[NSIndexSetindexSetWithIndex:indexPath.section] withRowAnimation:UITableViewRowAnimationAutomatic];
UITableView删除分组最后一个元素,布布扣,bubuko.com
原文地址:http://www.cnblogs.com/hetty/p/3759893.html