1
我接收到錯誤:使用未解決的識別符「JSON」使用未解決的識別符的「JSON」(SWIFT 3)(Alamofire)
從該行的:if let data = json["data"] ...
這是代碼的片斷與錯誤有關
// check response & if url request is good then display the results
if let json = response.result.value! as? [String: Any] {
print("json: \(json)")
}
if let data = json["data"] as? Dictionary<String, AnyObject> {
if let weather = data["weather"] as? [Dictionary<String, AnyObject>] {
if let uv = weather[0]["uvIndex"] as? String {
if let uvI = Int(uv) {
self.uvIndex = uvI
print ("UV INDEX = \(uvI)")
}
}
}
}
謝謝修復範圍問題,解決了問題! –
太棒了!如果您將我的答案標記爲已接受,那麼將來如果他們遇到同樣的問題,將會更容易爲其他人找到答案。 – nathan