iOS中tableView的三种刷新方法

//tableView的三种刷新方式
//1.删除模型数据 2. 刷新表格 3.归档
 
[self.tableView reload]; //所有cell全部刷新
 

[self.tableView reloadRowsAtIndexPahts: withRowAnimation:] //刷新某一行 行数不变

 
 
[self.tableView deleteRowsAtIndexPaths: withRowAnimation:] //删除某一行,刷新改行下面的行,往前提
原文地址:https://www.cnblogs.com/wohaoxue/p/4958858.html