gpt4 book ai didi

iphone - cocoa touch 显示屏 多种货币

转载 作者:行者123 更新时间:2023-12-03 16:48:12 30 4
gpt4 key购买 nike

我正在使用 Cocoa Touch 开发 iPhone 应用程序。

我将货币金额以及 ISO 4217 货币代码列表中的相关货币代码存储在表中:

例如:123.45 英镑、456.45 美元、321.98 澳元等

当我显示这些值时,我希望使用正确的货币符号对它们进行格式化:£ 123.45、$ 456.45、$ 321.98。

为了显示我正在使用的当前区域设置中的金额

NSNumberFormatter *numFormatter = [[NSNumberFormatter alloc] init];                         
[numFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
[numFormatter setLocale: [NSLocale currentLocale]];

我希望能够根据货币代码设置区域设置以显示正确的货币符号。

有没有办法根据货币代码设置区域设置?

最佳答案

使用当前区域设置总是更好,因为它是用户可配置的。相反,只需设置货币代码:

[numFormatter setCurrencyCode: theIOSCurrencyCode];

关于iphone - cocoa touch 显示屏 多种货币,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4866834/

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