I am responsible for the integration of accessibility for an iOS application.
And I am having difficulty in changing the focus direction from LTR to RTL.
How can i do it in Xcode?
I am responsible for the integration of accessibility for an iOS application.
And I am having difficulty in changing the focus direction from LTR to RTL.
How can i do it in Xcode?
You simply need to create an array for accessibile items.
for eg: i have 2 outlets say: leftbutton
and rightbutton
.
Then in your viewDidLoad()
add this:
UIAccessibilityPostNotification(UIAccessibilityScreenChangedNotification, rightbutton)
self.accessibilityElements = [rightbutton, leftbutton]