I'm looking to add the capability for a popup view to be dismissed by using the "two-finger-z- gesture, via accessibilityPerformEscape. I've added this code to the view, but I am not able to dismiss it with the z gesture, is there anything else i'm missing?
- (BOOL)accessibilityViewIsModal
{
return YES;
}
- (BOOL)accessibilityPerformEscape
{
return YES;
}