Hi
I have implemented setting bundle in my project and added switch option in that.
<dict>
<key>Type</key>
<string>PSToggleSwitchSpecifier</string>
<key>Title</key>
<string>SwitchOne</string>
<key>Key</key>
<string>switch_one</string>
<key>DefaultValue</key>
<false/>
</dict>
In earlier versions like iOS 12, Accessibility Inspector used to show traits as Static Text & Button for that given Switch option in App setting. Means It used to treat text and Switch as two elements separately. But in iOS 13+ the whole row gets selected and it just show only one trait element that is Button.
So it is causing issue if you want to automate it because automations scripts are not able to identify switch as separate element.
Post
Replies
Boosts
Views
Activity
Hi,STEPS:1. Launch App2. Navigate from A screen to B3. Observe focus it should go to back button of navigatiojn bar in B screen while coming from AEarlier It was happening but from IOS 13+ I am seeing it is not working. Now ehen you in navigate from A to B focus doesn't go to Back Button it go to any first component of B's viewcontroller's view.In earlier iOS versions accessibility used to treat Navigation Bar backButton as first element of controller, when you came from A To B.Please let me know if it is a defect or behaviour has been changed.Thanks,Pragati R
HiI am facing issue with UIPicker accessibility announcements. Picker has list of LocalisedString when I scroll to next item in Picket it doesn't annouce whole word it just annouce its last 2 charcters.For ex- Item is Front Door then it should annouce Front Door but instead it just announcing "or"This is my input array for pickerlet input = [NSlocalisedString("Select", ""), NslocalisedString("Front Door", "")]I tried using picker view delegate - pickerView(_ pickerView: UIPickerView, viewForRow row: Int, forComponent _: Int, reusing _: UIView?) -> UIView {}But doesnt work