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();
}
网友评论