用到的方法 : 点击确定删除后调用方法1或方法2;(一般用方法2)
1.删除某个分区: [_tableView deleteSections:[NSIndexSet indexSetWithIndex:index.section] withRowAnimation:UITableViewRowAnimationLeft];
2.删除一条Cell: [_tableView deleteRowsAtIndexPaths:@[index.row] withRowAnimation:UITableViewRowAnimationRight];
注意在删除前数据源要删除对应的数据.删除后要调用刷新界面 [_tableView reloadData];
网友评论