我有一个可以用 SwiftyJSON 解析的 json:
if let title = json["items"][2]["title"].string {
println("title : \(title)")
}
完美运行。
但我无法循环通过它。我尝试了两种方法,第一种是
// TUTO :
//If json is .Dictionary
for (key: String, subJson: JSON) in json {
...
}
// WHAT I DID :
for (key: "title", subJson: json["items"]) in json {
...
}
XCode 不接受 for 循环声明。
第二种方法:
// TUTO :
if let appArray = json["feed"]["entry"].arrayValue {
...
}
// WHAT I DID :
if let tab = json["items"].arrayValue {
...
}
XCode 不接受 if 语句。
我究竟做错了什么 ?