我正在尝试根据纬度和经度位置获取我的应用程序的温度和天气数据...
我怎样才能让它工作?
NSURL *jsonurl = [NSURL URLWithString:@"http://www.myweather2.com/developer/forecast.ashx?uac=(API-KEY)&output=json&query=",placemark.location,@"&temp_unit=f"];
我正在尝试根据纬度和经度位置获取我的应用程序的温度和天气数据...
我怎样才能让它工作?
NSURL *jsonurl = [NSURL URLWithString:@"http://www.myweather2.com/developer/forecast.ashx?uac=(API-KEY)&output=json&query=",placemark.location,@"&temp_unit=f"];
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。