从文化信息中获取货币代码(en-IN)

时间:2016-08-09 10:36:42

标签: ios objective-c nslocale

如何获取文化信息(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];
}

请为此建议解决方案?

0 个答案:

没有答案