リアルタイムの通貨レートが必要です。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];