I am new to iPhone Developer,
I want to detect touch in my webview so i tried this but this method is not getting fired,
in .h
file
@interface EpubReaderViewController : UIViewController
in .m
file
...
- (void)sendEvent:(UIEvent *)event{
NSLog(@"Touch detected") ;
}
...
Even i tried this also,
- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {
NSLog(@"Touches began");
}
Thanks In Advance !