1、刷新表中的指定区
NSIndexSet * nd=[[NSIndexSet alloc]initWithIndex:1]; //刷新第二个section [tview reloadSections:nd withRowAnimation:UITableViewRowAnimationAutomatic];
2、刷新表中的指定cell
NSIndexPath*te=[NSIndexPath indexPathForRow:2inSection:0]; //刷新第一个section的第二行 [tableViewreloadRowsAtIndexPaths:[NSArray arrayWithObjects:te,nil]withRowAnimation:UITableViewRowAnimationMiddle];