//指定刷新某一行
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:1];
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];