I have an application which uses
UITapGestureRecognizers
which seem to not work in iOS9 Beta 2.They are successfully calling
- (BOOL)gestureRecognizer:(UIGestureRecognizer *)gestureRecognizer shouldReceiveTouch:(UITouch *)touch {
NSLog(@"shouldReceiveTouch"); return YES;
}
but it doesn't hit any of the other UITapGesture delegate methods.
When I run the same application (from Xcode 7) on a device running on iOS 8, it works as expected.
Has anyone else hit this?