使用 NSNumberFormatter 显示上标 %
我正在使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
% 在 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.