格式化浮点值
这可能是一个愚蠢的问题,但无论如何。
我希望我在标签上设置的数字的格式很好,就像这样 20,000,000 。 我该怎么做?
现在我已将小数位数设置为 0,因此我只得到没有任何位置的整数。
[NSString stringWithFormat:@"%.0f", slider.value];
This is probably a stupid question but anyway.
I wan the number I set on my label to be formated nicely like this 20,000,000 .
How do I do this ?
For now I've set the number of decimal points to 0 so I just get the whole number without any places.
[NSString stringWithFormat:@"%.0f", slider.value];
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以使用以下格式化程序:
you can use the following formatter:
查看 NSNumberFormatter 的文档 - 你可以用它做几乎所有的事情。
Check out the docs for NSNumberFormatter - you can do pretty much everything with that.