How to get Currency Code 356 for the culture info (en-IN) . I used the following API to get currency code, but it returns INR, but i need 356 as currency code.
-(NSString*)currencyCode
{
NSLocale *lcl = [[NSLocale alloc] initWithLocaleIdentifier:@"en-IN"];
NSNumberFormatter *fmtr = [[NSNumberFormatter alloc] init];
[fmtr setNumberStyle:NSNumberFormatterCurrencyStyle];
[fmtr setLocale:lcl];
NSLog(@"%@",[fmtr currencyCode]);
return [fmtr currencyCode];
}
Please suggest solution for this?