如何將JSON對象轉換爲CLLocationDegrees?如何將JSON對象轉換爲CLLOCATIONDEGREES?
if let value = response.result.value {
let json = JSON(value)
for (key,subJson):(String, JSON) in json {
let lat = subJson["latitude"] as! CLLocationDegrees
let lng = subJson["longitude"] as! CLLocationDegrees // This will return error
}
}
爲JSON數據類型是
{
"latitude": 2323.44555,
"longitude": 2313.344555
}
它只是將不會從JSON工作
正好返回什麼錯誤? – Larme
@Larme'從JSON投射到不相關的對象CLLocationDegrees(又名Double)總是失敗',那麼應用程序崩潰 – sinusGob
錯字'經度'vs'經度'? – vadian