无法调用非函数类型'IndexPath'的值

时间:2019-04-11 20:27:39

标签: swift

使用以下代码时出现错误:

tableView.insertRows(at: [indexPath(row: 0, section: 1)], with: 
.automatic)

错误:

Cannot call value of non-function type 'IndexPath'

1 个答案:

答案 0 :(得分:3)

您的indexPath的小写字母i。它应该是IndexPath,且带有大写的I。

tableView.insertRows(at: [IndexPath(row: 0, section: 1)], with: .automatic)