检测删除键被按下

发布于 2024-12-10 10:04:31 字数 280 浏览 0 评论 0原文

我正在编写一个函数,将 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

放低过去 2024-12-17 10:04:31

当要删除字符时,替换字符串应该是空字符串(@"")。

The replacement string should be the empty string (@"") when a character is about to be deleted.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文