//指定刷新某一行
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];
TableView — reloadData 刷新
原文:http://www.cnblogs.com/qwer-BHS/p/4941547.html