美文网首页
iOS:tableView动画执行完成

iOS:tableView动画执行完成

作者: Liu____ | 来源:发表于2021-07-01 09:47 被阅读0次

    if #available(iOS 11.0, *) {
    self?.tableView.performBatchUpdates({
    self?.tableView.deleteRow(at: IndexPath(row: index, section: indexPath.section), with: .automatic)
    }, completion: { (isfinish) in
    self?.tableView.reloadData();
    })
    } else {
    self?.tableView.beginUpdates();
    self?.tableView.deleteRow(at: IndexPath(row: index, section: indexPath.section), with: .automatic)
    self?.tableView.endUpdates();
    self?.tableView.reloadData();
    }

    相关文章

      网友评论

          本文标题:iOS:tableView动画执行完成

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