hi all
i want to use just the result of any online currency converter as a variable in to my program.
double amount_d;
amount_d=[amount doubleValue];
NSString *mar=[NSString stringWithFormat:@"http://www.xe.com/ucc/convert.cgi? Amount=%d&From=%@&To=%@",amount_d,code1,code2 ];
[[NSWorkspace sharedWorkspace] openURL:[NSURL URLWithString:mar]];
it opens like http://www.xe.com/ucc/convert.cgi?Amount=1&From=EUR&To=USD
but i want to get only the result not the page, i don't have any idea about that & i'm beginner in objective c . or how can i get the currency rate table and use it in my program.
thanks.