嘿所有人, 我的问题是,我想用JSON解析这个字符串 http://rate-exchange.appspot.com/currency?from=USD&to=EUR
但这是静态的,它会从USD转换为EUR但我想要的是第一个参数应该是在第一个textField中选择的那个,第二个参数应该是第二个。所以我可以传递commonISOCurrencyCodes(来自在TF)中选择的参数,到该字符串,并通过单击Result TextField上的按钮获得结果。
答案 0 :(得分:0)
就像:
一样简单NSString* fromCode = // from
NSString* toCode = // to
NSString* urlString = [NSString stringWithFormat:@"http://rate-exchange.appspot.com/currency?from=%@&to=%@", fromCode, toCode];