UITableViewCell刷新

2016-11-14  本文已影响23人  騂跃神话

//一个section刷新

 NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:indexPath.section];    
 [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];    

//一个cell刷新

NSIndexPath *indexPath=[NSIndexPath indexPathForRow:indexPath.row inSection:indexPath.section];    
[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
上一篇下一篇

猜你喜欢

热点阅读