Feedback for iOS Accessibility: Getting Started

It states that

For most UIKit classes, the default (isAccessibilityElement flag) is true , but for UILabel it’s false .

which is not true:

Labels are accessible to VoiceOver by default.

(UILabel | Apple Developer Documentation)

What I noticed is that an UILabel with no text, indeed has the flag set to false, but if the text property is set, the flag gets set to true with no additional changes.

@iulianonofrei Thank you for sharing this - much appreciated!

The article was not fixed though.