您好,我正在开发一个应用程序作为货币转换器,我有一个 URL,它将只返回一种国家货币,但我的模块看起来像如果用户选择一个国家,那么我需要显示多个国家的货币转换器值列表,所以我需要不止一次给 josn 打电话。
代码如下:
responseData = [[NSMutableData data] retain];
ArrData = [NSMutableArray array];
NSString *strURL = [NSString stringWithFormat:@"http://rate-exchange.appspot.com/currency?from=%@&to=%@&q=1",strtablbase,strto];
NSURL *url = [NSURL URLWithString:strURL];
NSURLRequest *request = [NSURLRequest requestWithURL:url];
[[NSURLConnection alloc] initWithRequest:request delegate:self];
-(void)connectionDidFinishLoading:(NSURLConnection *)connection { [连接释放]; NSString *responseString = [[NSString alloc] initWithData:responseData encoding:NSUTF8StringEncoding]; [响应数据发布];
results = [responseString JSONValue];
livevalues=[responseString JSONValue];
使用上面的代码,我得到一个国家的值,但我需要以不同的方式传递一个 strto 值可能吗?如果是,请提出建议并帮助我解决这个问题。