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

All Questions

1 vote
1 answer
536 views

iOS: Not able to change the accessibility frame for my UITextView

I'm trying to change the accessibility frame for my UITextView to something smaller, but I'm not able to. This is the code that I am using. override func viewWillAppear(_ animated: Bool) { super....
Curt Rand's user avatar
  • 1,045
1 vote
0 answers
148 views

Voice-Over not working for attributed string UITextView

func configureTextView() { textView.isSelectable = true textView.isEditable = false let attributedString = NSMutableAttributedString(string: Subscription.smsPriceDisclaimer) if let ...
Akash Singh's user avatar
1 vote
0 answers
663 views

iOS: Links do not appear on a rotor in Voice Over mode for UITextView

I use UITextView in my app. It contains a text and some URL links in it. I recognize the tap (double tap in Voice Over) on that UITextView and perform some action (overwriting default edit action). ...
linto jacob's user avatar
1 vote
2 answers
1k views

How to get accessibility to recognize two hyperlinks in one UITextView

When using accessibility with my UITextView that contains two separate hyperlinks, VoiceOver only reads out the first of the two hyperlinks and only lets you double tap to access that one. Is there a ...
jmosky12's user avatar
2 votes
2 answers
365 views

Accessibility accessibilityDecrement() not getting called

Why are not accessibilityDecrement() and accessibilityIncrement() getting called in my custom UITextView when performing the appropriate gestures? class CustomTextView: UITextView { required ...
Melodius's user avatar
  • 2,715
0 votes
0 answers
317 views

UITextView and Accessibility: swipe right and left for next paragraph

In iOS Safari you can swipe right or left to go to next/previous paragraph in the text with VoiceOver. How can this be accomplished in UITextView?
Melodius's user avatar
  • 2,715
5 votes
4 answers
8k views

UITextView Linkable label Accessibility Voice Over Issue

I have a UITextView and portion of the text is clickable. Link works. When I turn the accessibility feature in settings of the iPhone and turn on Voice over as well, the text of the textview is read ...
SruE's user avatar
  • 63