iOS 监测耳机连接状态

2016-08-24  本文已影响73人  筱笑

首先要添加 #import <AVFoundation/AVFoundation.h>头文件。

//注册通知
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(outputDeviceChanged:) name:AVAudioSessionRouteChangeNotification object:[AVAudioSession sharedInstance]];
//实现
- (void)outputDeviceChanged:(NSNotification *)aNotification
{
    // do your jobs here    
}
上一篇 下一篇

猜你喜欢

热点阅读