Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
0 votes
0 answers
16 views

How to tap a button in a UITest that is in and out of a swiftui accessibilityRepresentation?

If the View looks like this: struct Screen: View { var body: some View { VStack { ... NavigationLink { LoginScreen() } label: { ...
Celina's user avatar
  • 583
0 votes
1 answer
76 views

Disable Button shape accessibility from programming

Is there any way to disable button shape accessibility from app code? Because it shows greyish backgorund all over the app which kill UI part. The tabs & all buttons show grey background all the ...
nirav's user avatar
  • 651
0 votes
0 answers
42 views

Links in WKWebview not showing numbers when "Show Numbers" command is activated with Voice Control

I am using WKWebview and loading HTML content with couple of anchor tags to open another view in app itself when tap on link. However, I do not see any numbers for links when I say "Show Numbers&...
DJB's user avatar
  • 857
1 vote
2 answers
151 views

How to make Top View Controller receive focus with `tab` or `arrow` keys when using Full Keyboard Access

Question: Top View Controller (CardVC) not focusable with Full Keyboard Access Issues: When CardVC is displayed, and if the Full Keyboard Access is enabled, the navigation by pressing Tab or Arrow ...
ashokds's user avatar
  • 2,248
1 vote
0 answers
33 views

UIAccessibility post announcement not always read if fired by button

I have a simple app to announce a text when tapping a button. Here is the code (it's in SwiftUI but the same behavior arises using UIKit) struct ContentView: View { var body: some View { ...
rai212's user avatar
  • 751
0 votes
0 answers
37 views

SwiftUI AccessibilityFocusState not working in Lists

I have a view shown as a crouton (from bottom view) when tapping a button. I want to move accessibility focus to this view when shown but using AccessibilityFocusState only works if the button is NOT ...
rai212's user avatar
  • 751
1 vote
0 answers
53 views

How to correctly get text cursor location from any application with Mac Accessibility APIs?

I'm developing a helper application that provides autocomplete features for any application by using macOS Accessibility APIs. I can get the right location from Xcode, VS Code and other applications ...
ziyasal's user avatar
  • 558
0 votes
0 answers
19 views

How to specify button badge information for accessibility in iOS

I have a custom button related to user notifications in my app which can have a numberic badge. If there is no badge, I want the VoiceOver to speak "Notifications. Button" and if it has a ...
rai212's user avatar
  • 751
0 votes
0 answers
48 views

voice over is enabled(UIaccesibility.isVoiceOverRunning) on parent A(nav controller) and On child view(UIactivityViewcontroller)voice over is disabled

I'm trying to achieving accessibility on activityviewcontroller. I'm presenting navigation controller over root view and later presenting activityviewcontroller over navigation controller.I found ...
datha's user avatar
  • 359
0 votes
0 answers
64 views

SwiftUI bug? Elements invisible in Voice Over mode

I'm facing issues with the visibility of the elements inside ZStack in VoiceOver mode. I'm building a View where I got navigation tabs inside ScrollView (green tabs on picture), and on top of that I ...
nonamehere's user avatar
0 votes
0 answers
40 views

Exploring Apple Accessibility Audit in Xcode

I'm exploring Apple Accessibility Audit in Xcode and can't figure out how an audit like elementDetection (XCUIAccessibilityAuditTypeElementDetection) works at all. My goal is to build the elements so ...
Илья's user avatar
0 votes
1 answer
55 views

accessibilityElementDidBecomeFocused only gets called with VoiceOver enabled

Background I have a UICollectionViewCell, where I override accessibilityElementDidBecomeFocused method. I also override canBecomeFocused to always return true. The App allows Accessibility->Full ...
Abubakr Dar's user avatar
  • 4,078
0 votes
1 answer
88 views

How to disable Direct Touch Area on MyApp

I need to disable Direct Touch Area in MyApp (a Unity App) using a Native framework. I usually used UIAccessibilityTraits.allowsDirectInteraction = UIAccessibilityTraits.none or UIAccessibilityTraits....
David Leonardo Acosta Laverde's user avatar
1 vote
1 answer
96 views

How can access inner elements of NavigationLink in accessibility in SwiftUI

I have enabled accessibility for automation testing. I have added accessibility label for all element but accessible of elements inside the NavigationLink is false. var body: some View { ...
Santosh Gupta's user avatar
0 votes
0 answers
30 views

contentView.isAccessibilityElement = true is not working on UITableviewCell

have one UItableviewCell. not able to perform cell selction with voice over on if I set isaccessibilityElement to true contentView.isAccessibilityElement = true If I remove this cell selection works. ...
dmn's user avatar
  • 21

15 30 50 per page
1
2 3 4 5
21