SFSpeechRecognitionResult
An object that contains the partial or final results of a speech recognition request.
Declaration
class SFSpeechRecognitionResultOverview
Use an SFSpeechRecognitionResult object to retrieve the results of a speech recognition request. You don’t create these objects directly. Instead, the Speech framework creates them and passes them to the handler block or delegate object you specified when starting your speech recognition task.
A speech recognition result object contains one or more transcriptions of the current utterance. Each transcription has a confidence rating indicating how likely it is to be correct. You can also get the transcription with the highest rating directly from the bestTranscription property.
If you requested partial results from the speech recognizer, the transcriptions may represent only part of the total audio content. Use the isFinal property to determine if the request contains partial or final results.