Details
-
Bug
-
Resolution: Invalid
-
Not Evaluated
-
None
-
6.8.1, 6.9.0
-
None
Description
While VoiceOver is enabled, an iOS app is going to crash when trying to type in a TextField.
Please see the attached MWE.
The issue lies in
qtbase/src/plugins/platforms/ios/quiview_accessibility.mm :: bringIntoView There is an (unchecked) access to the 'axid': QAccessibleInterface* iface = QAccessible::accessibleInterface(a11yElement.axid); However the elements returned by the keyboard have no axid, because they are private and not meant to be accessed by apps. This causes an immediate crash.