Get current speed of VoiceOver on iOS










5















Is there any way to get the current speed of the VoiceOver speech on an iOS app? Sometimes I use my own AVSpeechUtterance strings and I'd like to use the same rate that's is configured on VoiceOver settings. Thanks in advance.










share|improve this question
























  • any luck with this? I would also like to know how to get that

    – Danut Pralea
    Mar 2 '16 at 16:42











  • Sorry @DanutPralea. At this moment there isn't any method to get the current VoiceOver speed :(

    – VíctorVarLed
    Mar 4 '16 at 8:05











  • yeah, that's what I figured as well

    – Danut Pralea
    Mar 4 '16 at 11:48











  • Hi. Is there any way to get this? I'm also looking to get the current voiceover voice. Thanks!

    – Karthik Kannan
    Mar 24 '18 at 0:03











  • Hi, I'm also looking for a solution for this.

    – michael-martinez
    Nov 12 '18 at 16:26















5















Is there any way to get the current speed of the VoiceOver speech on an iOS app? Sometimes I use my own AVSpeechUtterance strings and I'd like to use the same rate that's is configured on VoiceOver settings. Thanks in advance.










share|improve this question
























  • any luck with this? I would also like to know how to get that

    – Danut Pralea
    Mar 2 '16 at 16:42











  • Sorry @DanutPralea. At this moment there isn't any method to get the current VoiceOver speed :(

    – VíctorVarLed
    Mar 4 '16 at 8:05











  • yeah, that's what I figured as well

    – Danut Pralea
    Mar 4 '16 at 11:48











  • Hi. Is there any way to get this? I'm also looking to get the current voiceover voice. Thanks!

    – Karthik Kannan
    Mar 24 '18 at 0:03











  • Hi, I'm also looking for a solution for this.

    – michael-martinez
    Nov 12 '18 at 16:26













5












5








5


1






Is there any way to get the current speed of the VoiceOver speech on an iOS app? Sometimes I use my own AVSpeechUtterance strings and I'd like to use the same rate that's is configured on VoiceOver settings. Thanks in advance.










share|improve this question
















Is there any way to get the current speed of the VoiceOver speech on an iOS app? Sometimes I use my own AVSpeechUtterance strings and I'd like to use the same rate that's is configured on VoiceOver settings. Thanks in advance.







ios accessibility voiceover






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Jan 15 '16 at 10:10









Tomáš Zato

22.2k21114568




22.2k21114568










asked Aug 15 '15 at 23:59









VíctorVarLedVíctorVarLed

6817




6817












  • any luck with this? I would also like to know how to get that

    – Danut Pralea
    Mar 2 '16 at 16:42











  • Sorry @DanutPralea. At this moment there isn't any method to get the current VoiceOver speed :(

    – VíctorVarLed
    Mar 4 '16 at 8:05











  • yeah, that's what I figured as well

    – Danut Pralea
    Mar 4 '16 at 11:48











  • Hi. Is there any way to get this? I'm also looking to get the current voiceover voice. Thanks!

    – Karthik Kannan
    Mar 24 '18 at 0:03











  • Hi, I'm also looking for a solution for this.

    – michael-martinez
    Nov 12 '18 at 16:26

















  • any luck with this? I would also like to know how to get that

    – Danut Pralea
    Mar 2 '16 at 16:42











  • Sorry @DanutPralea. At this moment there isn't any method to get the current VoiceOver speed :(

    – VíctorVarLed
    Mar 4 '16 at 8:05











  • yeah, that's what I figured as well

    – Danut Pralea
    Mar 4 '16 at 11:48











  • Hi. Is there any way to get this? I'm also looking to get the current voiceover voice. Thanks!

    – Karthik Kannan
    Mar 24 '18 at 0:03











  • Hi, I'm also looking for a solution for this.

    – michael-martinez
    Nov 12 '18 at 16:26
















any luck with this? I would also like to know how to get that

– Danut Pralea
Mar 2 '16 at 16:42





any luck with this? I would also like to know how to get that

– Danut Pralea
Mar 2 '16 at 16:42













Sorry @DanutPralea. At this moment there isn't any method to get the current VoiceOver speed :(

– VíctorVarLed
Mar 4 '16 at 8:05





Sorry @DanutPralea. At this moment there isn't any method to get the current VoiceOver speed :(

– VíctorVarLed
Mar 4 '16 at 8:05













yeah, that's what I figured as well

– Danut Pralea
Mar 4 '16 at 11:48





yeah, that's what I figured as well

– Danut Pralea
Mar 4 '16 at 11:48













Hi. Is there any way to get this? I'm also looking to get the current voiceover voice. Thanks!

– Karthik Kannan
Mar 24 '18 at 0:03





Hi. Is there any way to get this? I'm also looking to get the current voiceover voice. Thanks!

– Karthik Kannan
Mar 24 '18 at 0:03













Hi, I'm also looking for a solution for this.

– michael-martinez
Nov 12 '18 at 16:26





Hi, I'm also looking for a solution for this.

– michael-martinez
Nov 12 '18 at 16:26












1 Answer
1






active

oldest

votes


















1














Is the announcement specifically for VoiceOver users? Then it might be better to post announcement notification from UIAccessibility. VoiceOver will announce the notification, so users will hear with the same voice and speed from their VoiceOver setting.



UIAccessibility.post(notification:.announcement, argument:"Hello World!")


Read more information from the documentation.



UIAccessibility.post: https://developer.apple.com/documentation/uikit/uiaccessibility/1615194-post



UIAccessibility.Notification: https://developer.apple.com/documentation/uikit/uiaccessibility/notification



announcement: https://developer.apple.com/documentation/uikit/uiaccessibility/notification/1620176-announcement






share|improve this answer























  • This worked very well for me in conjunction with UIAccessibility.announcementDidFinishNotification in order to do something after VoiceOver finished speaking, without disrupting the user's set speaking rate setting.

    – D. Pratt
    Dec 12 '18 at 15:19










Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f32030548%2fget-current-speed-of-voiceover-on-ios%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























1 Answer
1






active

oldest

votes








1 Answer
1






active

oldest

votes









active

oldest

votes






active

oldest

votes









1














Is the announcement specifically for VoiceOver users? Then it might be better to post announcement notification from UIAccessibility. VoiceOver will announce the notification, so users will hear with the same voice and speed from their VoiceOver setting.



UIAccessibility.post(notification:.announcement, argument:"Hello World!")


Read more information from the documentation.



UIAccessibility.post: https://developer.apple.com/documentation/uikit/uiaccessibility/1615194-post



UIAccessibility.Notification: https://developer.apple.com/documentation/uikit/uiaccessibility/notification



announcement: https://developer.apple.com/documentation/uikit/uiaccessibility/notification/1620176-announcement






share|improve this answer























  • This worked very well for me in conjunction with UIAccessibility.announcementDidFinishNotification in order to do something after VoiceOver finished speaking, without disrupting the user's set speaking rate setting.

    – D. Pratt
    Dec 12 '18 at 15:19















1














Is the announcement specifically for VoiceOver users? Then it might be better to post announcement notification from UIAccessibility. VoiceOver will announce the notification, so users will hear with the same voice and speed from their VoiceOver setting.



UIAccessibility.post(notification:.announcement, argument:"Hello World!")


Read more information from the documentation.



UIAccessibility.post: https://developer.apple.com/documentation/uikit/uiaccessibility/1615194-post



UIAccessibility.Notification: https://developer.apple.com/documentation/uikit/uiaccessibility/notification



announcement: https://developer.apple.com/documentation/uikit/uiaccessibility/notification/1620176-announcement






share|improve this answer























  • This worked very well for me in conjunction with UIAccessibility.announcementDidFinishNotification in order to do something after VoiceOver finished speaking, without disrupting the user's set speaking rate setting.

    – D. Pratt
    Dec 12 '18 at 15:19













1












1








1







Is the announcement specifically for VoiceOver users? Then it might be better to post announcement notification from UIAccessibility. VoiceOver will announce the notification, so users will hear with the same voice and speed from their VoiceOver setting.



UIAccessibility.post(notification:.announcement, argument:"Hello World!")


Read more information from the documentation.



UIAccessibility.post: https://developer.apple.com/documentation/uikit/uiaccessibility/1615194-post



UIAccessibility.Notification: https://developer.apple.com/documentation/uikit/uiaccessibility/notification



announcement: https://developer.apple.com/documentation/uikit/uiaccessibility/notification/1620176-announcement






share|improve this answer













Is the announcement specifically for VoiceOver users? Then it might be better to post announcement notification from UIAccessibility. VoiceOver will announce the notification, so users will hear with the same voice and speed from their VoiceOver setting.



UIAccessibility.post(notification:.announcement, argument:"Hello World!")


Read more information from the documentation.



UIAccessibility.post: https://developer.apple.com/documentation/uikit/uiaccessibility/1615194-post



UIAccessibility.Notification: https://developer.apple.com/documentation/uikit/uiaccessibility/notification



announcement: https://developer.apple.com/documentation/uikit/uiaccessibility/notification/1620176-announcement







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 13 '18 at 16:13









jl303jl303

375314




375314












  • This worked very well for me in conjunction with UIAccessibility.announcementDidFinishNotification in order to do something after VoiceOver finished speaking, without disrupting the user's set speaking rate setting.

    – D. Pratt
    Dec 12 '18 at 15:19

















  • This worked very well for me in conjunction with UIAccessibility.announcementDidFinishNotification in order to do something after VoiceOver finished speaking, without disrupting the user's set speaking rate setting.

    – D. Pratt
    Dec 12 '18 at 15:19
















This worked very well for me in conjunction with UIAccessibility.announcementDidFinishNotification in order to do something after VoiceOver finished speaking, without disrupting the user's set speaking rate setting.

– D. Pratt
Dec 12 '18 at 15:19





This worked very well for me in conjunction with UIAccessibility.announcementDidFinishNotification in order to do something after VoiceOver finished speaking, without disrupting the user's set speaking rate setting.

– D. Pratt
Dec 12 '18 at 15:19

















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f32030548%2fget-current-speed-of-voiceover-on-ios%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







這個網誌中的熱門文章

Barbados

How to read a connectionString WITH PROVIDER in .NET Core?

Node.js Script on GitHub Pages or Amazon S3