Gestures not getting detected in accessibility mode
I am programming an app where I need to put a label onto top of the screen and whenever user touches it (or swipes finger above it), I need the label text to be read out loud. I tried the following ways: First make the accessibility element of the label = YES . [labelInfo setIsAccessibilityElement:YES]; But this doesn't work. Then I tried defining many gestures like two touches, single tap; long tap using one and two fingers etc., and in that gesture class I write UIAccessibilityPostNotification , so that the text can be read out loud. But it doesn't seem to work at all. This is how I did it: