首页 > 系统 > iOS > 正文

ios UITableview 刷新某一个cell 或 section

2019-11-09 18:52:05
字体:
来源:转载
供稿:网友

//刷新第一个section的第1行

NSIndexPath *te = [NSIndexPath indexPathForRow:0 inSection:0];

 [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:te,nil] withRowAnimation:UITableViewRowAnimationAutomatic];

//一个section刷新    NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];    [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];


发表评论 共有条评论
用户名: 密码:
验证码: 匿名发表