拔下耳机时是否有事件?

Ben*_*ton 16 iphone objective-c headphones audiotoolbox ios

在测试过程中,客户注意到,当拔下耳机时,iPhone中的视频播放会暂停.他想要类似的音频播放功能,也许还能弹出一条消息.

有没有人知道是否有某种类型的事件我可以联系到这个可能吗?

小智 20

请参阅"音频会话编程指南"中的" 响应路由更改 ".

-渣


sna*_*oil 8

这改变了iOS 7,你只需要听取命名的通知 AVAudioSessionRouteChangeNotification

[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(audioRouteChanged:) name:AVAudioSessionRouteChangeNotification object:nil];
Run Code Online (Sandbox Code Playgroud)