51Testing软件测试论坛

 找回密码
 (注-册)加入51Testing

QQ登录

只需一步,快速开始

微信登录,快人一步

手机号码,快捷登录

查看: 2107|回复: 0
打印 上一主题 下一主题

webView添加手势的冲突问题

[复制链接]

该用户从未签到

跳转到指定楼层
1#
发表于 2019-3-13 16:22:49 | 只看该作者 回帖奖励 |倒序浏览 |阅读模式
本帖最后由 小文0111 于 2019-3-13 16:24 编辑

首先webView 上添加两个手势,

  1. <p style="line-height: 28px;">    // 点击webView 中心区域,从上面和下面弹出两个菜单栏</p><p style="line-height: 28px;">        UITapGestureRecognizer *tap = [[UITapGestureRecognizer alloc] initWithTarget:self action:@selector(tapWebView:)];</p><p style="line-height: 28px;">        tap.delegate  = self;</p><p style="line-height: 28px;">        [self.webView addGestureRecognizer:tap];</p><p style="line-height: 28px;">        // 长按webView弹出 UIMenuViewController 增加复制 地图 百科等功能.</p><p style="line-height: 28px;">        UILongPressGestureRecognizer *longPressGesture = [[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(longPressWebView:)];</p><p style="line-height: 28px;">        [longPressGesture setDelegate:self];</p><p style="line-height: 28px;">        [self.webView addGestureRecognizer:longPressGesture];</p>
复制代码

要想让点击手势起作用需要实现 :

  1. <p style="line-height: 28px;">- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {</p><p style="line-height: 28px;">    if ([otherGestureRecognizer isKindOfClass:[UILongPressGestureRecognizer class]] && [gestureRecognizer isKindOfClass:[UITapGestureRecognizer class]]) {</p><p style="line-height: 28px;">       return YES;</p><p style="line-height: 28px;">}</p>
复制代码

这样就技能响应点击手势 又能响应长按手势了,但是还有一个问题,那就是长按 webView 中心区域时 既会出现UIMenuController 又会弹出上下菜单栏......!

为了解决这个问题就需要继续在这个手势的代理方法中做手脚了.

  1. <p style="line-height: 28px;">- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {</p><p style="line-height: 28px;">    /**</p><p style="line-height: 28px;">     *  如果第一个手势是点击第二个是长按就返回NO 不支持同时响应长按和点击手势</p><p style="line-height: 28px;">     */</p><p style="line-height: 28px;">    if ([otherGestureRecognizer isKindOfClass:[UILongPressGestureRecognizer class]] && [gestureRecognizer isKindOfClass:[UITapGestureRecognizer class]]) {</p><p style="line-height: 28px;">        return NO;</p><p style="line-height: 28px;">    } else {</p><p style="line-height: 28px;">       return YES;</p><p style="line-height: 28px;">    }</p><p style="line-height: 28px;">}</p>
复制代码

这样一来 长按中心区域就只会出现,U了 而不会弹出上下菜单栏. tap 和 longPress手势又都能响应了!

--------

::要想让UIMenuController弹出菜单控制器必须实现:

  1. <p style="line-height: 28px;">-(BOOL)canBecomeFirstResponder</p><p style="line-height: 28px;">{</p><p style="line-height: 28px;">    return YES;</p><p style="line-height: 28px;">}</p><p style="line-height: 28px;">---复制的实现</p>
  2. <p style="line-height: 28px;">-(void)menuCopy:(id)sender</p><p style="line-height: 28px;">{</p><p style="line-height: 28px;">    [self.webView performSelector:@selector(copy:)];</p><p style="line-height: 28px;">} </p>
复制代码

选择和全选的实现同copy!


分享到:  QQ好友和群QQ好友和群 QQ空间QQ空间 腾讯微博腾讯微博 腾讯朋友腾讯朋友
收藏收藏
回复

使用道具 举报

本版积分规则

关闭

站长推荐上一条 /1 下一条

小黑屋|手机版|Archiver|51Testing软件测试网 ( 沪ICP备05003035号 关于我们

GMT+8, 2024-11-15 13:32 , Processed in 0.062221 second(s), 23 queries .

Powered by Discuz! X3.2

© 2001-2024 Comsenz Inc.

快速回复 返回顶部 返回列表