格式化 iPhone 文本字段中输入的数字
我有一个文本字段,用户在其中输入一个数字,该数字在数千范围内。
我希望在用户输入数字时对文本字段进行格式化,例如: 200000应该变成200,000。
我该怎么做呢?
非常感谢,
S
I have a text field where the user enters a number, which is in the range of thousands.
I want the text field to be formatted as the user enters the number, example :
200000 should become 200,000.
how do i go about doing this??
Many Thanks,
S
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我也有同样的问题!
操作方法如下。您想要使用 NSNumberFormatter 并将其设置为使用 Decimal 样式:
将 textField 替换为 UITextField 变量的名称。
I had the same question!
Here's how you do it. You want to use NSNumberFormatter and set it to use Decimal style:
Replace textField with the name of your UITextField variable.