Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我按照关于如何循环的 SwiftJSON 说明进行操作,为什么会出现语法错误?
我正在使用 SwiftyJSON xcode6.3 分支。
"features"在你的 for 循环中不是一种类型,key: String而是使用。
"features"
key: String
所以你的代码变成:
for (key: String, subJson: JSON) in json {