使用以下代码时出现错误:
tableView.insertRows(at: [indexPath(row: 0, section: 1)], with:
.automatic)
错误:
Cannot call value of non-function type 'IndexPath'
答案 0 :(得分:3)
您的indexPath
的小写字母i。它应该是IndexPath
,且带有大写的I。
tableView.insertRows(at: [IndexPath(row: 0, section: 1)], with: .automatic)