可能重复:
iPhone/iOS JSON 解析教程
我不知道如何从网站解析 JSON 数据。
{
"weather": {
"curren_weather": [
{
"humidity": "54",
"pressure": "1011",
"temp": "50",
"temp_unit": "f",
"weather_code": "1",
"weather_text": "Partly cloudy",
"wind": [
{
"dir": "W",
"speed": "9",
"wind_unit": "kph"
}
]
}
],
我想要做的就是将“temp”和“weather_text”变量存储为 NSStrings 以用于标签或我的应用程序中的任何内容......
实际的请求 url 类似于:http ://www.myweather2.com/developer/forecast.ashx?uac=(access-key)&output=json&query=(latitude,longitude)&temp_unit=f
关于如何完成这个的任何想法?