接続はできていますが、天候配列から説明を取得できません。Array 内の Dictionary であるためです。
{"weather":
[{"id":801,"main":"Clouds","description":"few clouds","icon":"02n"}]}
温度の取得は次のように正常に機能します。
if let main = item["main"] as? NSDictionary {
println("Main existe")
if let temp = main["temp"] {
println("Temp existe")
weatherRequested.append(temp.stringValue)
}
}