格式化 obj c 中特定本地的货币
我正在获取多种货币的产品价格。这是一个示例数据
货币名称 货币符号 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这意味着您想以不同的本地化版本显示它。就像法语或德语中的欧元(带有小数点逗号)和瑞士法郎中的瑞士法郎(带有小数点,可能还有用于分隔千位的撇号)。
我会将货币映射到特定的本地化并将其提供给 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.