美文网首页
iOS 监测耳机连接状态

iOS 监测耳机连接状态

作者: 筱笑 | 来源:发表于2016-08-24 13:46 被阅读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    
}

相关文章

网友评论

      本文标题:iOS 监测耳机连接状态

      本文链接:https://www.haomeiwen.com/subject/lsfosttx.html