当用户触摸我的UIWebview时,我正在使用hittest来接收。我需要知道用户何时停止触摸视图,但我没有从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];
}
答案 0 :(得分:0)
继承UIWebView,并在该类中实现此方法,以便您可以找到触摸。 它将执行你的if条件。