如何阻止 UITextField 响应摇动手势?
默认情况下,如果您在 UITextField
中输入文本时摇动 iPhone,则会出现一个小框,询问您是否要撤消输入。我怎样才能防止这种情况发生?我浏览了 UITextField
,UITextFieldDelegate
和 UITextInputTraits
文档,没有发现任何与抖动相关的内容。
想必我可以继承 UITextField
来忽略摇动事件,但我对自己不搞砸其他事情的能力并不完全有信心。我喜欢这样的东西:
textField.respondsToShake = FALSE;
最好的方法是什么?
By default, if you shake the iPhone while entering text in a UITextField
, a little box will appear asking if you want to undo typing. How can I prevent this from happening? I looked through the UITextField
, UITextFieldDelegate
, and UITextInputTraits
docs and found nothing relating to shaking.
Presumably I could subclass UITextField
to ignore the shake event, but I'm not exactly confident in my ability to not screw other things up. I'd love something like
textField.respondsToShake = FALSE;
What's the best way to do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试子类化
UITextField
并重写canPerformAction:withSender:
,这样它将禁止undo:
操作。但随后您将无法通过摇动和上下文菜单进行撤消。You could try to subclass
UITextField
and overridecanPerformAction:withSender:
in such a way that it will disallow theundo:
action. But then you lose undo both by shaking and through the context menu.