Google Weather API消失了吗?我在我的iPhone应用程序中使用了以下google weather api来获得4天的天气预报。NSString *address = @"http://www.google.com/ig/api?weather=Chicago";
NSString *request = [NSString stringWithFormat:@"%@",address];
NSLog(@"request: %@", request);
NSURL *URL = [NSURL URLWithString:request];
NSError *error;
NSString *XML = [NSString stringWithContentsOfURL:URL encoding:NSASCIIStringEncoding error:&error];
NSLog(@"XML: %@", XML);
NSLog(@"XML lenght: %d", [XML length]);截至2012年8月25日,我绝对没有回来!我没有得到任何结果。这是什么时候发生的?有没有其他人遇到同样的问题?这是一个非常关键的问题,因为我有多个天气/时钟应用程序寻找谷歌天气api,他们都崩溃了,因为我期待一些结果回到我的XML字符串!
- 3 回答
- 0 关注
- 1124 浏览
添加回答
举报
0/150
提交
取消