gpt4 book ai didi

iphone - 如何在 UIWebView 的长按手势上创建点击事件?

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:06:12 25 4
gpt4 key购买 nike

我在 UIWebView 上添加了长按手势。但是我希望 UIWebView 在我的长按被识别之前处理一个标准的 Tap 事件。 (应该在长按上处理两个手势——一个简单的轻按和我的长按)。如何做到这一点?

我认为需要在 TouchBegin 上将 Tap 事件发送到 UIWebView。是否正确?

最佳答案

正确的代码:

- (void)viewDidLoad {
UILongPressGestureRecognizer* gesture = [[[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)] autorelease];
gesture.delegate = self;
[myWebView addGestureRecognizer:gesture];
}

- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldRecognizeSimultaneouslyWithGestureRecognizer:(UIGestureRecognizer *)otherGestureRecognizer {
return YES;
}

关于iphone - 如何在 UIWebView 的长按手势上创建点击事件?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13261713/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com