I have a UILabel with text such as the following:
Please search Google for the answer.
I'm aware you can make links tappable in a UILabel using a UITapGestureRecognizer via a solution like this. The problem is that if the user is visually impaired and relies on a screen reader, the screen reader doesn't know about the tappable link in the text.
How can I get a tappable link in a UILabel that is accessible via a screen reader?
Ideally I'm looking for a solution that still works with UILabel rather than a readonly UITextView.