I'm trying to provide custom text for voiceover user instead of reading the body text.
E.g., the current body text is say "Apple stock $203.03 ↑" it reads as "Apple stock two hundred three dollars and three cents up arrow" but I wanted to read as "Apple stock two hundred three dollars and three cents in green"
The following code did not work:
let content = UNMutableNotificationContent()
content.body = "Apple stock $203.03 ↑"
content.accessibilityLabel = "Apple stock two hundred three dollars and three cents in green"
content.accessibilityHint = "I am an Hint"
Even the hint is not spoken.
Let me know if it is possible to achieve this?
Is there anyway to achieve this in default notification ( Notification Content Extension works only after user expand the notification)