The following code doesn’t work on iOS 5 and iOS 5.1 (but works on iOS 6):
- (void)viewDidLoad {
...
UILongPressGestureRecognizer* gesture = [[[UILongPressGestureRecognizer alloc] initWithTarget:self action:@selector(handleLongPress:)] autorelease];
[myWebView addGestureRecognizer:gesture];
}
- (void)handleLongPress:(UIGestureRecognizer*)gestureRecognizer {
...
}
How to fix the issue? Thanks a lot for the help!
The correct code: