UIWebView 中触摸的命中测试结束
我正在使用 hittest 来获取用户触摸我的 UIWebview 的时间。我需要知道用户何时停止触摸视图,但我没有从 hittest 获得任何事件。还有其他函数可以做到这一点吗?
- (void)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
NSLog(@"Event type:%@", event.type);
if (event.type == UIEventTypeTouches) {
NSLog(@"Got something");
}
// call the super
[super hitTest:point withEvent:event];
}
I'm using hittest to pick up when a user touches my UIWebview. I need to know when the user has stopped touching the view, but I don't get any events from hittest. Is there another function to do this?
- (void)hitTest:(CGPoint)point withEvent:(UIEvent *)event
{
NSLog(@"Event type:%@", event.type);
if (event.type == UIEventTypeTouches) {
NSLog(@"Got something");
}
// call the super
[super hitTest:point withEvent:event];
}
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
子类化 UIWebView,并在该类中实现此方法,以便您可以找到触摸。
它会执行你的 if 条件。
subclass the UIWebView, and implement this method in that class so that you can find touches.
it will execute your if condition.