如何获取文化信息(en-IN)的货币代码356。 我使用以下API来获取货币代码,但它返回INR,但我需要356作为货币代码。
-(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];
}
请为此建议解决方案?