创建了一个可变数组,往数组里面插入相关节点的时候indexpath
报错信息为:cannot convert value of type 'NSMutalbeArray' to expected argument type '[IndexPath]'
//获取需要修正的indexpath
let indexPathArray = NSMutableArray()
for i in startPosition...endPosition {
let tempIndexPath:NSIndexPath = NSIndexPath(row: i, section: 0)
indexPathArray.add(tempIndexPath)
}
//插入或者删除相关节点
if expand {
self.insertRows(at: indexPathArray, with: UITableViewRowAnimation.none)
}
insertRows(at: _, with: _) Cette méthode, le premier paramètre est un
[IndexPath]
Puisque vous utilisez Swift, il est recommandé d'utiliser le type de données Swift
C'est
[IndexPath]
c'estArray<IndexPath>
La définition de Array en est une dans Swift
struct
NSMutableArray est une classe objc, deux choses qui sont complètement incompatibles avec struct
Ma méthode d'écriture recommandée :
Et, dans Swift 3, le préfixe NS est supprimé, n'utilisez pas
NSIndexPath
, utilisez plutôtIndexPath
.