使用 NSNumberFormatter 显示上标 %

发布于 2024-11-08 05:01:30 字数 356 浏览 0 评论 0原文

我正在使用 NSNumberFormatter 来显示百分比:

NSNumberFormatter *inclineFormat = [[[NSNumberFormatter alloc] init] autorelease];
[inclineFormat setMinimumFractionDigits:1];
[inclineFormat setNumberStyle:NSNumberFormatterPercentStyle];

它按预期工作,但设计团队希望在上标中看到“%”。有没有办法使用 NSNumberFormatter 来指定?

我正在 iOS 设备中的 UILabel 中显示格式化字符串。

I'm using an NSNumberFormatter to display a percentage:

NSNumberFormatter *inclineFormat = [[[NSNumberFormatter alloc] init] autorelease];
[inclineFormat setMinimumFractionDigits:1];
[inclineFormat setNumberStyle:NSNumberFormatterPercentStyle];

It's working as expected with the exception that the design team would like to see the "%" in superscript. Is there anyway to specify that using NSNumberFormatter?

I'm displaying the formatted string in a UILabel in iOS devices.

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

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

发布评论

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

评论(1

高冷爸爸 2024-11-15 05:01:30

% 在 unicode 中不作为上标存在。您需要格式化所需的字符串,不带 % 符号,并覆盖较小的字体 UILabel 以使其显示为上标,或使用 %< 在 UIWebView 中显示内容/代码> 标签。 这是一个相关问题

% does not exist in unicode as a superscript. You will need to format the string that you want with out a % sign and overlay a smaller font UILabel to make it appear as a superscript or display the contents in a UIWebView using <sup>%</sup> tags. Here is a related question.

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