tableView刷新

作者: 春暖花已开 | 来源:发表于2017-06-10 16:11 被阅读29次

    因为以前开发都是刷新整张表,现在把刷新指定的组和指定行的方法贴出来:

    //刷新整个tableView
    [tableView reloadData];
    
    //一个section刷新
    [tableview reloadSections:[NSIndexSet indexSetWithIndex:2] withRowAnimation:UITableViewRowAnimationAutomatic];
    
    //一个cell刷新
    NSIndexPath *indexPath=[NSIndexPath indexPathForRow:3 inSection:0];
    [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPath,nil] withRowAnimation:UITableViewRowAnimationNone];
    

    相关文章

      网友评论

      本文标题:tableView刷新

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