如何显示价格格式(小分)

时间:2014-10-08 15:33:44

标签: ios nsnumber nsnumberformatter

我尝试以小美分显示价格:美分必须小于下图中的其他数字。我在NSNumberFormatter中搜索但没有找到答案。 你有什么想法吗?

Price

由于

1 个答案:

答案 0 :(得分:0)

格式化字符串后,您可以使用它创建NSMutableAttributedString。在字符串中搜索“。”然后获取其后的子串的NSRange。获得此范围后,请执行以下操作:

[attributedString setAttributes:@{NSFontAttributeName : [UIFont fontWithName:@"Helvetica" size:10], NSBaselineOffsetAttributeName : @10} range:centsRange];

您需要确保选择的字体小于文本的其他部分。