我正在使用AVAudioSession进行音频播放和录音。似乎两种方式都注册了相同的中断通知。
[[NSNotificationCenter defaultCenter] addObserver: self selector:@selector(handleInterruption:) name:AVAudioSessionInterruptionNotification object: [AVAudioSession
sharedInstance]];
我的问题是如何识别中断发生的方式。我需要知道它以通知我的网页;
答案 0 :(得分:0)
通知处理程序将通知作为参数获取。该通知将其保留为属性object
中的“发件人”。这是音频会话。