-
Notifications
You must be signed in to change notification settings - Fork 21
Open
Description
Category has been removed from TTS.IOptions in commit fafba8c.
Why is this change?
The category option is a flag required to mute TTS when the mute mode is turned on on the iPhone.
NSString* category = [options objectForKey:@"category"];
[[AVAudioSession sharedInstance] setActive:NO withOptions:0 error:nil];
if ([category isEqualToString:@"ambient"]) {
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryAmbient
withOptions:0 error:nil];
} else {
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback
withOptions:AVAudioSessionCategoryOptionDuckOthers error:nil];
}
Thank you,
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels