码迷,mamicode.com
首页 > 移动开发 > 详细

ios监听输出设备变化(监听耳机插拔,蓝牙设备连接断开等)的实现

时间:2014-10-30 15:20:44      阅读:216      评论:0      收藏:0      [点我收藏+]

标签:style   io   color   os   ar   for   sp   div   on   

 在ios6以前,我们有如下的方法:

#import<AVFoundation/AVFoundation.h>

 

    [[AVAudioSession sharedInstancesetDelegate:self];


  AudioSessionAddPropertyListener(kAudioSessionProperty_AudioRouteChange,audioRouteChangeListenerCallbackself);

然后实现该回调:

//音频监控回调函数

static void audioRouteChangeListenerCallback (void                      *inUserData,

                                              AudioSessionPropertyID    inPropertyID,

                                              UInt32                    inPropertyValueSize,

                                              const void                *inPropertyValue

                                              )

{

    if (inPropertyID != kAudioSessionProperty_AudioRouteChange)

    {

        return;

    }

    // Determines the reason for the route change, to ensure that it is not

    // because of a category change.

    

    CFDictionaryRef routeChangeDictionary = inPropertyValue;

    CFNumberRef     routeChangeReasonRef = CFDictionaryGetValue (routeChangeDictionary, CFSTR (kAudioSession_AudioRouteChangeKey_Reason));

    SInt32          routeChangeReason;

    CFNumberGetValue (routeChangeReasonRef, kCFNumberSInt32Type, &routeChangeReason);

//  do your handling here

}

请注意[[AVAudioSession sharedInstancesetDelegate:self]一定不要遗漏,否则该回调应该无法触发。

------------------------分割线------------------------
上面的方法是ios6以前的实现方式,我们可以看出这个api是比较低级的实现,其回调还是c的实现方式,而不是我们平常习惯的oc实现。
因此在ios6及以后,上面的api被deprecated了(当然,你要是还这么用,也还是能够实现功能),我们有更好更高级的实现来解决问题:

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(outputDeviceChanged:) name:AVAudioSessionRouteChangeNotification object:[AVAudioSession sharedInstance]];

- (void)outputDeviceChanged:(NSNotification *)aNotification

{

 // do your jobs here

}

请注意,addobserver的参数填写:其中的object必须是[AVAudioSession sharedInstance],而不是我们通常很多情况下填写的nil,此处若为nil,通知也不会触发。







ios监听输出设备变化(监听耳机插拔,蓝牙设备连接断开等)的实现

标签:style   io   color   os   ar   for   sp   div   on   

原文地址:http://blog.csdn.net/openglnewbee/article/details/40619813

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!