NSIndexSet *IndexSet=[[NSIndexSet alloc]initWithIndex:0];
[self.tableView reloadSections:IndexSet withRowAnimation:UITableViewRowAnimationNone];
NSIndexPath *indexPath=[NSIndexPath indexPathForRow:0 inSection:1];
[self.tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
网友评论