开发者

How to stop the UITextField from responding to the shake gesture?

开发者 https://www.devze.com 2023-01-15 19:07 出处:网络
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 UIText

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 someth开发者_如何学Going like

textField.respondsToShake = FALSE;

What's the best way to do this?


[UIApplication sharedApplication].applicationSupportsShakeToEdit = NO;


You could try to subclass UITextField and override canPerformAction:withSender: in such a way that it will disallow the undo: action. But then you lose undo both by shaking and through the context menu.

0

精彩评论

暂无评论...
验证码 换一张
取 消