美文网首页
刷新cell

刷新cell

作者: BlueSky520 | 来源:发表于2017-10-18 15:17 被阅读0次

//一个section刷新

NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];

[tableview reloadSections:indexSetwithRowAnimation:UITableViewRowAnimationAutomatic];

//一个cell刷新

NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3inSection:0];

[tableView reloadRowsAtIndexPaths:[NSArrayarrayWithObjects:indexPath,nil]withRowAnimation:UITableViewRowAnimationNone];

相关文章

网友评论

      本文标题:刷新cell

      本文链接:https://www.haomeiwen.com/subject/ryceuxtx.html