iOS:tableView动画执行完成

2021-07-01  本文已影响0人  Liu____

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();
}

上一篇下一篇

猜你喜欢

热点阅读