20

刚开始iOS 7的开发,发现iOS 7已经弃用了AudioSession相关的函数和PropertyListeners。

在我使用以下方法检测耳机是否已从设备上插入或拔出之前:

    /* add callback for device route change */
    AudioSessionAddPropertyListener (
                                     kAudioSessionProperty_AudioRouteChange,
                                     audioRouteChangeListenerCallback,
                                     (__bridge void *)(self));

然后实现监听器回调来对内部算法做不同的事情。现在 iOS 7 已弃用它,并且没有任何替代方案的文档,这里有专家的解决方案吗?谢谢!

4

2 回答 2

25

处理通知AVAudioSessionRouteChangeNotification(适用于 iOS 6.0 及更高版本。)

于 2013-10-29T05:52:33.160 回答
6

试试这个代码Swift 4.2

@objc func handleRouteChange(_ notification: Notification) {
    let reasonValue = (notification as NSNotification).userInfo![AVAudioSessionRouteChangeReasonKey] as! UInt
    let routeDescription = (notification as NSNotification).userInfo![AVAudioSessionRouteChangePreviousRouteKey] as! AVAudioSessionRouteDescription?

    NSLog("Route change:")
    if let reason = AVAudioSession.RouteChangeReason(rawValue: reasonValue) {
        switch reason {
        case .newDeviceAvailable:
            NSLog("     NewDeviceAvailable")
        case .oldDeviceUnavailable:
            NSLog("     OldDeviceUnavailable")
        case .categoryChange:
            NSLog("     CategoryChange")
            NSLog(" New Category: %@", AVAudioSession.sharedInstance().category.rawValue)
        case .override:
            NSLog("     Override")
        case .wakeFromSleep:
            NSLog("     WakeFromSleep")
        case .noSuitableRouteForCategory:
            NSLog("     NoSuitableRouteForCategory")
        case .routeConfigurationChange:
            NSLog("     RouteConfigurationChange")
        case .unknown:
            NSLog("     Unknown")
        @unknown default:
            NSLog("     UnknownDefault(%zu)", reasonValue)
        }
    } else {
        NSLog("     ReasonUnknown(%zu)", reasonValue)
    }

    if let prevRout = routeDescription {
        NSLog("Previous route:\n")
        NSLog("%@", prevRout)
        NSLog("Current route:\n")
        NSLog("%@\n", AVAudioSession.sharedInstance().currentRoute)
    }
}

并调用它func setupAudioSession()

    private func setupAudioSession() {

       // Configure the audio session
       let sessionInstance = AVAudioSession.sharedInstance()

       // we don't do anything special in the route change notification
       NotificationCenter.default.addObserver(self,
           selector: #selector(self.handleRouteChange(_:)),
           name: AVAudioSession.routeChangeNotification,
           object: sessionInstance)

}

试试Objective C这个代码

- (void)handleRouteChange:(NSNotification *)notification
{
    UInt8 reasonValue = [[notification.userInfo valueForKey:AVAudioSessionRouteChangeReasonKey] intValue];
    AVAudioSessionRouteDescription *routeDescription = [notification.userInfo valueForKey:AVAudioSessionRouteChangePreviousRouteKey];

    NSLog(@"Route change:");
    switch (reasonValue) {
        case AVAudioSessionRouteChangeReasonNewDeviceAvailable:
            NSLog(@"     NewDeviceAvailable");
            break;
        case AVAudioSessionRouteChangeReasonOldDeviceUnavailable:
            NSLog(@"     OldDeviceUnavailable");
            break;
        case AVAudioSessionRouteChangeReasonCategoryChange:
            NSLog(@"     CategoryChange");
            NSLog(@" New Category: %@", [[AVAudioSession sharedInstance] category]);
            break;
        case AVAudioSessionRouteChangeReasonOverride:
            NSLog(@"     Override");
            break;
        case AVAudioSessionRouteChangeReasonWakeFromSleep:
            NSLog(@"     WakeFromSleep");
            break;
        case AVAudioSessionRouteChangeReasonNoSuitableRouteForCategory:
            NSLog(@"     NoSuitableRouteForCategory");
            break;
        default:
            NSLog(@"     ReasonUnknown");
    }

    NSLog(@"Previous route:\n");
    NSLog(@"%@\n", routeDescription);
    NSLog(@"Current route:\n");
    NSLog(@"%@\n", [AVAudioSession sharedInstance].currentRoute);

}

并调用它(void)setupAudioSession

- (void)setupAudioSession {
    // Configure the audio session
    AVAudioSession *sessionInstance = [AVAudioSession sharedInstance];

    // we don't do anything special in the route change notification
    [[NSNotificationCenter defaultCenter] addObserver:self
                                          selector:@selector(handleRouteChange:)
                                          name:AVAudioSessionRouteChangeNotification
                                          object:sessionInstance];
}
于 2019-04-17T15:17:18.140 回答