美文网首页
iOS UITableview 刷新某一个cell 或 sec

iOS UITableview 刷新某一个cell 或 sec

作者: 杨二哥 | 来源:发表于2016-08-10 14:36 被阅读48次

    //一个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];

    相关文章

      网友评论

          本文标题:iOS UITableview 刷新某一个cell 或 sec

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