我正在尝试将货币符号传递给UILabel
。当我尝试获得符号时,我得到了奇怪的结果。这是我的代码:
self.currencyFormatter = [[NSNumberFormatter alloc] init];
[self.currencyFormatter setLocale:[NSLocale currentLocale]];
[self.currencyFormatter setMaximumFractionDigits:2];
[self.currencyFormatter setMinimumFractionDigits:2];
[self.currencyFormatter setAlwaysShowsDecimalSeparator:YES];
[self.currencyFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
NSLog(@"%@", self.currencyFormatter.positiveFormat);
NSLog
的输出为:¤#,##0.00
。我正试图获得$
。
我怎样才能获得$
(那是美国的)?