标签: ios swift uitableview
我用方法插入一个新单元格 tableView.insertRows(at: [cellIndexPath], with: .automatic) 插入后,我发现只有方法dataSourse?.tableView(tableView, numberOfRowsInSection: section)被更新,如果我直接调用tableView.numberOfRows(inSection: section),它仍然是旧值,
tableView.insertRows(at: [cellIndexPath], with: .automatic)
dataSourse?.tableView(tableView, numberOfRowsInSection: section)
tableView.numberOfRows(inSection: section)
已连接。有人可以解释这种矛盾吗?