Fork me on GitHub

一个section刷新 一个cell刷新

一个section刷新   一个cell刷新

    //一个section刷新
    NSIndexSet *indexSet=[[NSIndexSet alloc]initWithIndex:2];
    [tableview reloadSections:indexSet withRowAnimation:UITableViewRowAnimationAutomatic];
    //一个cell刷新
    NSIndexPath *indexPathA=[NSIndexPath indexPathForRow:0 inSection:0];
    [tableView reloadRowsAtIndexPaths:[NSArray arrayWithObjects:indexPathA,nil] withRowAnimation:UITableViewRowAnimationNone];

 

posted @ 2016-12-09 16:15  极度恐慌_JG  阅读(215)  评论(0编辑  收藏  举报