Question

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;
}
Was it helpful?

Solution

Your implementation of -accessibilityPerformEscape is empty. It is your responsibility to dismiss the modal view in response to the action.

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top