检测删除键被按下
我正在编写一个函数,将 UITextField
上的条目格式化为日期。它必须像这样 dd/mm/yyyy 显示。问题是我无法检测到删除键被按下。我使用 UITextFieldDelegate
方法 textField:shouldChangeCharactersInRange:replacementString:
来检测用户何时按下按键。我可以在 replacementString
上查找类似于 \n
的内容吗?
I'm writing a function that formats the entries on a UITextField
to a date. It must be displayed like this dd/mm/yyyy. The problem is that I'm not being able to detect the delete key was pressed. I'm using UITextFieldDelegate
method textField:shouldChangeCharactersInRange:replacementString:
to detect when the user presses a key. Is there something like a \n
I may look for on the replacementString
?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
当要删除字符时,替换字符串应该是空字符串(
@""
)。The replacement string should be the empty string (
@""
) when a character is about to be deleted.