更改货币格式的默认区域设置行为

发布于 2024-11-15 03:33:07 字数 357 浏览 3 评论 0原文

我面临一个奇怪的问题。我的应用程序依赖于双重转换:

货币字符串->数量->货币字符串

基本上单次转换都是通过iOS内置的本地化功能来实现的。我最近发现当用户使用瑞士法郎作为货币时,该应用程序无法正常工作。显然,此区域设置的默认设置是将所有货币值四舍五入到最接近的 5 美分。 (例如,1.28 瑞士法郎将变为 1.30 瑞士法郎,1.21 瑞士法郎将变为 1.20 瑞士法郎)。

由于多种原因,对我来说解决格式约定比解决该区域设置的错误更容易。

您是否知道如何强制转换对每个区域设置使用更详细的舍入方法(例如 0.01 而不是 0.05)?

谢谢你!

I am facing a strange problem. My app relies on a double conversion:

currency string -> number -> currency string

Basically, the single conversions are realized through the built-in localization functions of iOS. I recently found that the app does not work properly when the user uses CHF as currency. Apparently the default for this locale is to round all currency values to the nearest 5 cents. (eg. CHF 1.28 will become CHF 1.30, and 1.21 CHF will become CHF 1.20).

For a bunch of reasons it's easier for me to solve the formatting convention than solve the bug for that only locale.

Do you know a way to force the conversion to use a more detailed rounding approach (eg. 0.01 instead of 0.05) for every locale?

Thank you!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

弃爱 2024-11-22 03:33:07

我发现了一个有趣的解决方案:

currencyFormatter  = [[NSNumberFormatter alloc] init];
[currencyFormatter setGeneratesDecimalNumbers:YES];
[currencyFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
[currencyFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
// This will force the rounding behavior:
[currencyFormatter setRoundingIncrement:[NSNumber numberWithFloat:0.01]];

I found an interesting solution:

currencyFormatter  = [[NSNumberFormatter alloc] init];
[currencyFormatter setGeneratesDecimalNumbers:YES];
[currencyFormatter setFormatterBehavior:NSNumberFormatterBehavior10_4];
[currencyFormatter setNumberStyle:NSNumberFormatterCurrencyStyle];
// This will force the rounding behavior:
[currencyFormatter setRoundingIncrement:[NSNumber numberWithFloat:0.01]];
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文