我需要实时汇率。我正在使用 URL 中提供的 Google API
http:://www.google.com/ig/calculator?hl=en&q=1USD=?INR
每当我使用 json 解析访问该 URL 时,响应数据就会为零。我没有得到该代码中的确切错误
#define openexchangeURl @"http://www.google.com/ig/calculator?hl=en&q=1USD=?INR"
NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:openexchangeURl]];
NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding];
values =[responseString JSONValue];