TableView  — reloadData     刷新

//指定刷新某一行
    NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:1];
    [_readTableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath, nil] withRowAnimation:UITableViewRowAnimationNone];
 
 
 
//指定刷新某一段
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];
   
    [_readTableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
原文地址:https://www.cnblogs.com/qwer-BHS/p/4941547.html