如果只刷新一个cell 可以用
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:index inSection:0];
[self.table reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
如果只刷新一个section 可以用
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:index];
[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];