格式化 obj c 中特定本地的货币

发布于 2024-10-19 18:32:51 字数 247 浏览 0 评论 0原文

我正在获取多种货币的产品价格。这是一个示例数据

货币名称 货币符号 Pirce
“美元”,“$”1234.5
“欧元”、“欧元”12340.5
“英镑”,“英镑”123.4
"CHF", "CHF" 12345.0

所以我想根据类型而不是基于 iPad/iPhone 本地格式来格式化可用货币。 例如
$1234.50
1.234,50€
而且我想同时显示所有内容。
谢谢。

i am getting product price in multiple currency. here is a sample data

CurrencyName CurrencySymbol Pirce
"USD", "$" 1234.5
"EUR", "€" 12340.5
"GBP", "£" 123.4
"CHF", "CHF" 12345.0

so i want to format available currency based on type not based iPad/iPhone local format.
for example
$1234.50
1.234,50€
and also i want to display all at a same time.
thanks.

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

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

发布评论

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

评论(1

夜空下最亮的亮点 2024-10-26 18:32:51

这意味着您想以不同的本地化版本显示它。就像法语或德语中的欧元(带有小数点逗号)和瑞士法郎中的瑞士法郎(带有小数点,可能还有用于分隔千位的撇号)。

我会将货币映射到特定的本地化并将其提供给 nsnumberformatter。

That means you want to show it in different localizations. Like the Euros in French or German (with decimal comma) and the CHF in Swiss (with decimal point and probably and apostrophe for separating the thousands).

I would map the currency to a specific localization and the feed it to the nsnumberformatter.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文