gpt4 book ai didi

iphone - 本地化价格详细信息 -- E.G. 50 美元 vs 1000 元人民币

转载 作者:行者123 更新时间:2023-12-03 17:29:44 25 4
gpt4 key购买 nike

我想在我的 iPhone 应用程序中本地化价格。您能指导我如何实现这一目标吗?

例如:

50 美元 vs 1,480.00 澳元 vs 1450 元人民币 vs 999.00 英镑等等

最佳答案

NSNumberFormatter *numberFormatter = [[NSNumberFormatter alloc] init];
[numberFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
[numberFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[numberFormatter setLocale:[NSLocale currentLocale]];
NSString *formattedString = [numberFormatter stringFromNumber:price];

NSLog(@"Local price: %@", formattedString);

如果您只想要货币符号,可以使用:

NSString *sym = [[NSLocale currentLocale] objectForKey:NSLocaleCurrencySymbol]

关于iphone - 本地化价格详细信息 -- E.G. 50 美元 vs 1000 元人民币,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4523330/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com