1.根据NSIndexSet 中 initWithIndex 方法刷新具体某Section
NSIndexSet * indexSet = [[NSIndexSet alloc] initWithIndex:0];//刷新第一个section
[_tableView reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
2. 根据NSIndexPath中的 indexPathForRow inSection 方法刷新某个Section 中的具体某一行
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:0];//刷新第一个section的第一行
[_tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationMiddle];