What are the standard UISystemGestureGateGestureRecognizers
installed on the top level UIView
of an iOS app for?
My app consists of two vie
It appears that these recognizers are meant to prevent accidental touches near the top and bottom of the screen. They aren't configured with any targets, but can (like any UIResponder
) absorb touches to prevent them from being passed up the responder chain.
Notes (tested on iOS 7.1):
addTarget:action:
to verify that targets weren't being added or removed on the fly. delegate
is always nil
for both instances.