我已经阅读了其他相关错误,但无法解决我的问题
请帮助我!
public func successor() -> JSONIndex {
switch self.type {
case .array:
return JSONIndex(arrayIndex: (self.arrayIndex! + 1))
case .dictionary:
return JSONIndex(dictionaryIndex: <#T##Dictionary corresponding to your index##Dictionary<<#Key: Hashable#>, Any>#>.index(after: self.dictionaryIndex!))
default:
return JSONIndex()
}
}
.dictionary情况下的代码,Xcode指示存在错误