I am trying to add accessibility features to an iOS app that has already been developed.
There are a couple of UI features (e.g. buttons) that I like them to show up if
In ViewDIdLoad
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(voiceOverStatusChanged) name:UIAccessibilityVoiceOverStatusChanged object:nil]; - (void)voiceOverStatusChanged { if(!UIAccessibilityIsVoiceOverRunning()) { //do your changes } }