TableView是我们最常用的控件
NSIndexPath *indexP=[NSIndexPath indexPathForRow:3 inSection:0];
NSArray * array = @[indexP];
[myTableView reloadRowsAtIndexPaths:array withRowAnimation:UITableViewRowAnimationFade];
//UITableview 刷新某一个cell 或 section
//一个section刷新
NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];
[myTableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
//一个cell刷新
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];
[myTableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];