0

大家好, 我的问题是,我想使用 JSON
http://rate-exchange.appspot.com/currency?from=USD&to=EUR解析这个字符串

但这是静态的,它会从美元转换为欧元,但我想要的是第一个参数应该是在第一个 textField 中选择的那个,第二个来自第二个。这样我就可以传递 commonISOCurrencyCodes(来自选择的参数TF),添加到该字符串并通过单击 Result TextField 上的按钮获取结果。

在此处输入图像描述 在此处输入图像描述

4

1 回答 1

0

就像这样简单:

NSString* fromCode = // from
NSString* toCode = // to
NSString* urlString = [NSString stringWithFormat:@"http://rate-exchange.appspot.com/currency?from=%@&to=%@", fromCode, toCode];
于 2013-06-06T12:17:24.997 回答