0

我正在尝试根据纬度和经度位置获取我的应用程序的温度和天气数据...

我怎样才能让它工作?

    NSURL *jsonurl = [NSURL URLWithString:@"http://www.myweather2.com/developer/forecast.ashx?uac=(API-KEY)&output=json&query=",placemark.location,@"&temp_unit=f"];
4

1 回答 1

1
NSString *jsonStr = [NSString stringWithFormat:@"http://www.myweather2.com/developer/forecast.ashx?uac=(API-KEY)&output=json&query=%@&temp_unit=f", placemark.location];
NSURL *jsonurl = [NSURL URLWithString:jsonStr];

这假定 for 的值placemark.location是一个仅包含有效 URL 字符的 NSString。

于 2013-01-30T22:08:36.810 回答