• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

在 iPhone 应用程序显示阿拉伯数字而不本地化每个数字

用户头像
it1352
帮助22

问题说明

我想知道如何在不本地化每个数字的情况下在 iPhone 应用程序中显示阿拉伯数字.

I want to know how to display arabic numbers inside iPhone apps without localizing each digit.

例如,我在代码中有一个整数,其值 = 123

like for example, I have an integer in the code whose value = 123

我想显示为١٢٣无需自行本地化每个数字并强制应用使用阿拉伯语作为本地化语言,而不管用户选择的语言是什么

I want to display it as ١٢٣ without having to localize each digit on its own and force the app to use arabic as the localization language regardless of the user's chosen language

因为我在整个应用程序中都有很多动态变化的数字,所以我需要一个通用的智能解决方案

because I have many numbers all over the application that change dynamically, so I need a generic smart solution

正确答案

#1
NSDecimalNumber *someNumber = [NSDecimalNumber decimalNumberWithString:@"123"];
NSNumberFormatter *formatter = [[NSNumberFormatter alloc] init];
NSLocale *arLocale = [[[NSLocale alloc] initWithLocaleIdentifier:@"ar"] autorelease];
[formatter setLocale:arLocale];
NSLog(@"%@", [formatter stringFromNumber:someNumber]); // Prints in Arabic
[formatter setLocale:[NSLocale currentLocale]];
NSLog(@"%@", [formatter stringFromNumber:someNumber]); // Prints in Current Locale
[formatter release];

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tangiegfg
系列文章
更多 icon
同类精品
更多 icon
继续加载