美文网首页
cell的刷新问题

cell的刷新问题

作者: 爱易寒曲易散 | 来源:发表于2016-06-16 11:12 被阅读32次

//一个section刷新

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

[tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];

//一个cell刷新

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

[tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];

相关文章

网友评论

      本文标题:cell的刷新问题

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