我是 iPhone 开发者的新手,
我想在我的 webview 中检测触摸,所以我尝试了这个,但是这个方法没有被触发,
在.h
文件中
@interface EpubReaderViewController : UIViewController
在.m
文件中
...
- (void)sendEvent:(UIEvent *)event{
NSLog(@"Touch detected") ;
}
...
即使我也试过这个,
- (void) touchesBegan:(NSSet*)touches withEvent:(UIEvent*)event {
NSLog(@"Touches began");
}
提前致谢 !