I need to add accessibility features to my iOS apps due to regulation in EU. (For details on the regulative issues in EU see my post in the Android forum here). There seems to be no intuitive way to achieve this in B4i that is comparable to the features in the B4A Accessibility lib. (Maybe I'm missing something? Please correct me if I'm wrong.)
To achieve accessibility in B4i I would like to use features directly from the UIAccessibility API Collection here:
https://developer.apple.com/documentation/objectivec/nsobject/uiaccessibility
Would someone please show me how make one of following methods available in B4i, then I could try to make all other available by myself what might result in new iAccessibility Lib comparable for the Android version.
var isAccessibilityElement: Bool
A Boolean value that indicates whether the element is an accessibility element that an assistive app can access.
var accessibilityLabel: String?
A succinct label in a localized string that identifies the accessibility element.
var accessibilityValue: String?
A localized string that contains the value of the accessibility element.
var accessibilityHint: String?
A localized string that contains a brief description of the result of performing an action on the accessibility element.
To achieve accessibility in B4i I would like to use features directly from the UIAccessibility API Collection here:
https://developer.apple.com/documentation/objectivec/nsobject/uiaccessibility
Would someone please show me how make one of following methods available in B4i, then I could try to make all other available by myself what might result in new iAccessibility Lib comparable for the Android version.
var isAccessibilityElement: Bool
A Boolean value that indicates whether the element is an accessibility element that an assistive app can access.
var accessibilityLabel: String?
A succinct label in a localized string that identifies the accessibility element.
var accessibilityValue: String?
A localized string that contains the value of the accessibility element.
var accessibilityHint: String?
A localized string that contains a brief description of the result of performing an action on the accessibility element.