PhoneticPair
public struct PhoneticPair
                PhoneticPair defines a pair of original string and its phonetic transcription.
Important
This is a Public Preview API. It may be changed or removed at any time.- 
                  
                  
Creates an instance of
PhoneticPair.Important
In this initialiser the following logic is implemented: It processes the value of
phoneticRepresentationinput parameter and replaces in it all IPA phonemes not supported byAVSpeechSynthesizerwith phonemes supported byAVSpeechSynthesizer. After that, it assigns processed value tophoneticRepresentation.Declaration
Swift
public init(original: String, phoneticRepresentation: String)Parameters
originaloriginal string.
phoneticRepresentationphonetic representation of the original string.
 
- 
                  
                  
Original string.
Declaration
Swift
public let original: String - 
                  
                  
Phonetic transcription of the original string.
Declaration
Swift
public let phoneticRepresentation: String 
        
 
          TomTom SDK for iOS (0.51.1)
        
          PhoneticPair