I have an UITextField
that uses a UIPickerView
with two columns as inputView
.
Image: When the user taps on the Target Range cell, the picker at the bottom appears.
I'm wondering how to optimise the VoiceOver experience for this setup.
- When tapping the text field VoiceOver says "[...] Insertion Point at end" This is misleading to the user, because he doesn't need to care about the caret. How can I fix that?
- I'm not sure: Should the focus change to the picker view automatically after the double tapping the text field?
- How to communicate to the user that there are two components in the
UIPickerView
and that the left one represents the lower target range and the right one represents the upper target range?
Thanks in advance.