I have an application which uses UITapGestureRecognizers which seem to not work in iOS9 Beta 2.
They are successfully calling
- (BOOL)g
I checked it via Xcode-7 beta 2
I've created vc with gesturerecognizer and create outlets for property and action. in viewDidload setted delegate, like this:

All methods, that was called during debug - i've marked //called
I received events to the next methods:
func gestureRecognizer(gestureRecognizer: UIGestureRecognizer, shouldReceiveTouch touch: UITouch) -> Bool {
print("worked")
// called
return true
}
func gestureRecognizerShouldBegin(gestureRecognizer: UIGestureRecognizer) -> Bool
{
//called
print("worked")
return true
}
func gestureRecognizer(gestureRecognizer: UIGestureRecognizer, shouldRequireFailureOfGestureRecognizer otherGestureRecognizer: UIGestureRecognizer) -> Bool
{
print("worked")
//called
return true
}
Try recreate project as i mentioned and check all your outlets and delegate
Hope this helps