I have created a subclass of UIWebView , and have implemented the touchesBegan, touchesMoved and touchesEnded methods.

but the web view subclass is not handling the touche events.

Is there any method to handle the touch events inside the UIWebView subclass ???

Thanks...

link|improve this question

0% accept rate
I don't understand why you would ever want to override the touch events handled by UIWebView. Your user is going to want to zoom in and zoom out on the website, as well as touch to click hpyerlinks etc. The code you posted above doesn't have any implementation in the touch methods... I think it's important to know what you are trying to accomplish. Overriding touch events in a web view seems like a bad idea to me. Is there another way to accomplish the behavior you are looking for from your app? – Tim Bowen Jul 15 '09 at 10:35
I don't expect such comments from a developer. "Overriding touch events in a web view seems like a bad idea to me" Watch out for "Stanza" and "Kindle" how they have subclassed/hooked the UIWebView for handling events. – Biranchi Oct 28 '09 at 6:07
Just looking for more information dude, relax. – Tim Bowen Nov 8 '09 at 0:21
3  
I would be suspect of any behavior when subclassing UIWebView. The dev doc says that it cannot be subclassed. I assume that the compiler, event handling, runloop, etc. will allow the subclass, but I would not trust the possible side effects. Also, your code could stop working all together in a future release. Can you explain what you want to do with a subclassed UIWebView? – mobibob Dec 27 '09 at 2:56
The approach of substituting a custom UIWindow will not work with the new storyboarding approach. Maybe Apple should have some methods that at least return where touches are inside the UIWebView/WebView. How hard could it be (famous last words, I know)? – Will Oct 3 '11 at 1:25
feedback

9 Answers

The documentation clearly states that UIWebView is not intended for Sub-Classing. However, you can still detect all the events. This tutorial should help.

link|improve this answer
feedback

You could put an NSView over your UIWebView, and overide the touchesDidBegin etc, then send them to your webview. Ex:

User touches your NSView, which provokes a

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event
{  
    // Execute your code then send a touchesBegan to your webview like so:
[webView touchesBegan:touches withEvent:event];
return;
}

your NSView has to be over the webview.

link|improve this answer
this is an iphone app and its using UIKit framework, i guess NSView is only for developing Mac Apps and is availabel in AppKit Framework. – Biranchi Nov 25 '09 at 11:12
Sorry I meant UIView – Alexandre Cassagne Nov 25 '09 at 17:45
I tried this approach and it does not work. – St3fan Apr 15 '10 at 17:32
Well it works for me – Alexandre Cassagne Apr 15 '10 at 18:19
it was a pleasure :) – Alexandre Cassagne Feb 1 '11 at 18:04
feedback

I'm not sure if this is what you want (it's not what you asked for, but it might work depending on what your end game is), but you could instead interpret the touches in JavaScript from inside the UIWebView, and get javascript to do

document.location='http://null/'+xCoord+'/'+yCoord; // Null is arbitrary.

Then you can catch that using the UIWebView's delegate method

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType

And if the request.URL.host (or whatever it is) isEqualToString:@"null" take the relevant action (and return NO instead of YES). You can even add the JS to each page by doing something like:

- (void)webViewDidFinishLoad:(UIWebView *)webView {
  [webView stringByEvaluatingJavaScriptFromString:@"window.ontouchstart=function(/* ... */);"];
}

Hope this helps?

link|improve this answer
Were you able to make this approach work? – pgb Sep 9 '09 at 19:03
Yes, though not with window.onmousedown! On touches began perhaps. – Benjie Gillam Nov 10 '09 at 10:06
This approach does not properly work. It seems only to work with clickable html-items as images and links. It seems to have no effect when clicking on div, p, body, document tags :( – mana Apr 30 '10 at 12:35
feedback

I've just found that UIWebView does check whether it responds to the - (void)webViewDidNotClick: (id)webBrowserView selector, once one taps on the view area (not on hyperref, or any other area that should be handled specifically). So you may implement that selector with your handling code :)

link|improve this answer
For some reason I can't detect double tap using this method. – ThE uSeFuL Aug 16 '11 at 6:23
Where is this supposed to go? I added it to my UIWebView delegate but that didn't work. – zekel Aug 18 '11 at 15:16
Not at delegate, you should subclass UIWebView itself and rewrite this selector such as ` -(void) webViewDidNotClick:(id)webBrowserView { [self.superview touchesEnded:nil withEvent:nil]; } ` – indexless Aug 25 '11 at 13:50
feedback

If all you need is to handle gestures, while leaving the rest of the UIWebView functionality intact, you can subclass UIWebView and use this strategy:

in the init method of your UIWebView subclass, add a gesture recognizer, e.g.:

UISwipeGestureRecognizer  * swipeRight = [[UISwipeGestureRecognizer alloc]initWithTarget:self action:@selector(handleSwipeGestureRightMethod)];
swipeRight.direction = UISwipeGestureRecognizerDirectionRight;
[self addGestureRecognizer:swipeRight];
swipeRight.delegate = self;

then, add this method to your class:

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

Add and handle your designated selector to the class, in this case "handleSwipeGestureRightMethod" and you are good to go...

link|improve this answer
With gesture recognizers seems to be the cleanest way. – Tudorizer Apr 19 at 13:54
feedback

Do you mean your sub-classed implementation is not called when touchesBegan, touchesMoved and touchesEnded are called?

It sounds like a problem with how you've created an instance of the object. More details are required I think.

(taken form comments)

Header File

#import <UIKit/UIKit.h> 

@interface MyWebView : UIWebView { } @end

Implementation File

#import "MyWebView.h" 

@implementation MyWebView 

- (id)initWithFrame:(CGRect)frame { 
    if (self = [super initWithFrame:frame]) { } return self; 
} 

- (void)drawRect:(CGRect)rect { 
    NSLog(@"MyWebView is loaded"); 
} 

- (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { 
   NSLog(@"touches began"); 
} 

- (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { 
    NSLog(@"Touches ended");     
} 

- (void)dealloc { 
   [super dealloc]; 
} 

@end
link|improve this answer
#import <UIKit/UIKit.h> @interface MyWebView : UIWebView { } @end #import "MyWebView.h" @implementation MyWebView - (id)initWithFrame:(CGRect)frame { if (self = [super initWithFrame:frame]) { } return self; } - (void)drawRect:(CGRect)rect { NSLog(@"MyWebView is loaded"); } - (void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event { NSLog(@"touches began"); } - (void)touchesEnded:(NSSet *)touches withEvent:(UIEvent *)event { NSLog(@"Touches ended"); } - (void)dealloc { [super dealloc]; } @end – Biranchi Jun 15 '09 at 5:01
Where do you call MyWebView *obj = [[MyWebView alloc] initWithFrame:CGMakeZero]; – rjstelling Jun 15 '09 at 10:05
2  
Can someone with enough karma make this a code block? – Tim Bowen Jul 15 '09 at 10:36
feedback

Look here, i used this, its extend UIWebView, its working for me, its very simple... (its note well explained, but if you just copy the code it works...), it manage all events, and you can actually click over links...

link|improve this answer
not work for Xcode 4 ... – WebberLai Dec 22 '11 at 3:34
feedback

Following on from what Unfalkster said, you can use the hitTest method to achieve what you want, but you don't have to subclass UIWindow. Just put this in your web view subclass. You will get a compile time warning but it does work:

- (void)hitTest:(CGPoint)point withEvent:(UIEvent *)event {
    if (event.type == UIEventTypeTouches) {

    	// get location info
    	CGFloat x = point.x;
    	CGFloat y = point.y;

    	// get touches
    	NSSet *touches = [event allTouches];

    	// individual touches
    	for (UITouch *touch in touches) {

    		if (touch.phase == UITouchPhaseBegan) {
    			// touches began

    		} else if (touch.phase == UITouchPhaseMoved) {

    		}

    		// etc etc
    	}
    }

    // call the super
    [super hitTest:point withEvent:event];
}

Hope that helps!

link|improve this answer
That's weird... For some reason [event allTouches] always returns an empty set – Mihai Damian Jan 5 '10 at 8:58
feedback

I would try overriding -sendEvent: on UIWindow, to see if you can intercept those touch events.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.