Reputation: 38162
I need to support Voice Over (for blind/partial blind persons) for my application. Please guide me how to implement this feature.
Upvotes: 1
Views: 1637
Reputation: 5671
I suggest to take a look at :
Many illustrations help to understand the concepts and the code snippets are provided in ObjC and Swift.
Upvotes: 0
Reputation: 4323
The best answer I've seen so far is this article which points to a Stanford lecture by Apple Engineer, Chris Fleisach
http://www.podfeet.com/blog/tutorials-5/build-accessible-ios-apps/
Chris's video: http://www.youtube.com/watch?v=5b0V6MltEnw
The video has what we all are looking for.
In the video starting around the 15:30 sec mark Chris starts talking about the relevant information. The API discussion starts at 19:29 sec.
Upvotes: 0
Reputation: 4164
I think this question is very vague with many aspects, so I'll try to touch a few:
Technically, if you can abstract each string from the interface, this can help: http://www.acapela-for-iphone.com/. From the top of my head, I can think of saying out loud the positions of the interface elements. This approach requires simple interfaces, with few elements on 1 screen and maybe multiple screens for subsequent actions.
Upvotes: 1