NSNumberFormatter 删除尾随零
我在 NSTableView 的单元格中使用了 NSNUmberFormatter 。这个 NSNUmberFormatter 是从 IB 库中拖出来并放入表视图单元格中的。然后从检查器中修改约束。然而,在应用程序运行期间,当我输入一些带有尾随零的值(例如 9.100)时,单元格仅显示 9.1。如何保留尾随零?
I have used NSNUmberFormatter in a cell of NSTableView. This NSNUmberFormatter is dragged from the IB library and put in the table view cell. Then from the inspector constraints are modified. However during run of the aplication when I enter some values which has trailing zeros e.g. 9.100, the cell displays only 9.1. How do I retain the trailing zeros as well?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
在数字格式化程序的格式中的小数点后放置所需数量的零。正如文档中提到的,此类使用 Unicode 数字格式模式 。
Put the desired number of zeros after the decimal in the number formatter's format. As mentioned in the docs, this class uses the Unicode number formatting patterns.
这很简单:
属性设置
只需将实例的
为您想要的任意数量的尾随零即可。
就我而言,我通过以下方式实例化 NSNumberFormater 来实现所有输出值的尾随零:
It's very simple:
Just set the property
of your
instance to whatever number of trailings zeros you want to have.
In my case I instantiated NSNumberFormater the following way to achieve trailing zeros for all output values: