一、枚举(enum):
1. AVAudioSessionInterruptionOptions:只有一个枚举值AVAudioSessionInterruptionOptionShouldResume,用于中断音频之后,重新激活之前播放的音频。在音频中断时,系统会发送AVAudioSessionInterruptionNotification通知,userInfo中AVAudioSessionInterruptionTypeKey值为AVAudioSessionInterruptionTypeKeyEnded时,表明中断结束,再获取userInfo中AVAudioSessionInterruptionOptions值为AVAudioSessionInterruptionOptionShouldResume,表明可以重新激活音频,并进行相应的处理。
2.AVAudioSessionSetActiveOptions:只有一个枚举值AVAudioSessionSetActiveOptionNotifyOthersOnDeactivation,用于setActive:withOptions:error:方法的Options参数中,当前App音频结束不再处于活跃状态时,通知系统将之前中断的音频(如music app),重新激活。
3.AVAudioSessionPortOverride:枚举值AVAudioSessionPortOverrideNone和AVAudioSessionPortOverrideSpeaker。用于设置当前音频输出端口,None,不覆盖输出端口,使用当前默认的音频类别的端口;Speaker,覆盖当前端口,将音频输出端口转换到扬声器,仅适用于AVAudioSessionCategoryPlayAndRecord类别。
4.AVAudioSessionRouteChangeReason:
枚举值:
AVAudioSessionRouteChangeReasonUnknown、
AVAudioSessionRouteChangeReasonNewDeviceAvailable(如耳机插入)、
AVAudioSessionRouteChangeReasonOldDeviceUnavailable(如耳机拔出)、
AVAudioSessionRouteChangeReasonCategoryChange(如类别变化,AVAudioSessionCategoryPlayback改成AVAudioSessionCategoryPlayAndRecord)、
AVAudioSessionRouteChangeReasonOverride、
AVAudioSessionRouteChangeReasonWakeFromSleep、
AVAudioSessionRouteChangeReasonNoSuitableRouteForCategory、
AVAudioSessionRouteChangeReasonRouteConfigurationChange,
多用于监听(AVAudioSessionRouteChangeNotification)耳机等设备变化之后,是否暂停播放音频。
5.AVAudioSessionCategoryOptions:
枚举值:
AVAudioSessionCategoryOptionMixWithOthers(当你的audio session活跃时,允许混合其他应用音频。典型场景:a. 在 AVAudioSessionCategoryPlayAndRecord or AVAudioSessionCategoryMultiRoute 类别下设置,表示audio的输入输出都enabled下允许其他应用在后台播放;b. 在 AVAudioSessionCategoryPlayback 类别下设置,表示允许其他应用后台播放,但是无论如何切换 静音/铃声 都会一直播放;c. 在其他类别下设置无效)、
AVAudioSessionCategoryOptionDuckOthers(当你的audio session活跃时,会混合其他应用的音频,但是会降低其他音频的音量,直到你的audio session不活跃。仅在AVAudioSessionCategoryPlayAndRecord、AVAudioSessionCategoryPlayback、AVAudioSessionCategoryMultiRoute、AVAudioSessionCategoryAmbient类别下有效)、
AVAudioSessionCategoryOptionAllowBluetooth(可接入蓝牙设备。a. 在AVAudioSessionCategoryPlayAndRecord类别下,当用合适的输出设备播放时,可用配对的蓝牙设备进行输入;b.在AVAudioSessionCategoryRecord类别下,可用配对的蓝牙设备进行输入;c.在其他类别下设置无效)、
AVAudioSessionCategoryOptionDefaultToSpeaker(只在AVAudioSessionCategoryPlayAndRecord类别下有效,设置扬声器播放)、
AVAudioSessionCategoryOptionInterruptSpokenAudioAndMixWithOthers(当你的app是导航类或者运动类应用,偶然说句提示语,仅在AVAudioSessionCategoryPlayAndRecord、AVAudioSessionCategoryPlayback、AVAudioSessionCategoryMultiRoute类别下有效)
AVAudioSessionCategoryOptionAllowBluetoothA2DP(可接入蓝牙设备。a. 在AVAudioSessionCategoryPlayAndRecord类别下,当用合适的输入设备录制时,可用配对的蓝牙设备进行输出;b.在AVAudioSessionCategoryMultiRoute orAVAudioSessionCategoryRecord类别下,不能被设置;c. 在其他类别下默认设置为true且不能更改)、
AVAudioSessionCategoryOptionAllowAirPlay(只在AVAudioSessionCategoryPlayAndRecord类别下有效),
用于setCategory:withOptions:error:方法中,设置options选项。
6.AVAudioSessionInterruptionType:枚举值AVAudioSessionInterruptionTypeBegan和AVAudioSessionInterruptionTypeEnded,表示中断类型,用于判断中断开始或者结束。用AVAudioSessionInterruptionNotification进行通知。
7.AVAudioSessionSilenceSecondaryAudioHintType:枚举值AVAudioSessionSilenceSecondaryAudioHintTypeBegin 和 AVAudioSessionSilenceSecondaryAudioHintTypeEnd,表示其他应用开始占据session,用AVAudioSessionSilenceSecondaryAudioHintNotification进行通知。
8.AVAudioSessionRecordPermission:
枚举值:
AVAudioSessionRecordPermissionUndetermined(用户未确定是否授权)、
AVAudioSessionRecordPermissionDenied(用户明确拒绝授权)、
AVAudioSessionRecordPermissionGranted(用户明确授权),
用来判断用户是否授权录制权限。
9.AVAudioSessionIOType:枚举值AVAudioSessionIOTypeNotSpecified和AVAudioSessionIOTypeAggregated,用于setAggregatedIOPreference:error:方法。
10.AVAudioSessionRouteSharingPolicy:
枚举值:
AVAudioSessionRouteSharingPolicyDefault、
AVAudioSessionRouteSharingPolicyLongForm、
AVAudioSessionRouteSharingPolicyIndependent,