UITextTapRecongnizer 禁用 UITextView 上的 TwoFingerSingleTap 操作,但不禁用其他手势
我需要在 UITextView 上的 UITextTapRecongnizer 类当键盘打开时禁用操作twoFingerSingleTap,以使用相同的手势创建另一个功能。
有人有主意吗?
谢了。
I need to disable the action twoFingerSingleTap from the class UITextTapRecongnizer on UITextView when the keyboard is up to make another function with the same gesture.
someone has an idea??
tks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我想这是您其他问题的后续问题:防止 UITextView 上的点击事件
而不是禁用该手势识别器,您可以尝试“hijcaking”它。
编辑:如果这(根据您编辑的问题)在键盘显示时停止工作,请尝试以下操作:覆盖
textViewDelegate
- (void)textViewDidBeginEditing:(UITextView *)textView 方法> 并将相同的代码放入其中。I guess this is a followup from your other question: Prevent tap event on UITextView
Instead of disabling that gesture recogniser you could try 'hijcaking' it.
EDIT: if this (according to your edited question) stops working when keyboard shows up then try this: override
- (void)textViewDidBeginEditing:(UITextView *)textView
method of yourtextViewDelegate
and put the same code inside.