美文网首页
78.UITableView使用

78.UITableView使用

作者: rebeccaBull | 来源:发表于2017-12-25 21:08 被阅读0次
    //一个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];
    
    
    reloadItemsAtIndexPath默认会有一个动画的过程,cell内容更新的瞬间会出现原内容与新内容重叠的情况。那么使用如下方式取消该动画即可:
    
    [UIView performWithoutAnimation:^{
        [self.collectionView reloadItemsAtIndexPaths:@[indexPath]];
    }];
    UITableView的reloadSections方法也有同样的情况:
    [self.tableView reloadSections:[NSIndexSet indexSetWithIndex:0] withRowAnimation:UITableViewRowAnimationNone];
    
    而使用reloadData进行全部cell的更新,则没有这个默认的动画过程。
      
    

    相关文章

      网友评论

          本文标题:78.UITableView使用

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