美文网首页程序员
iOS音量事件与回调

iOS音量事件与回调

作者: 何景根 | 来源:发表于2020-11-24 16:00 被阅读0次

    添加事件监听

    [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(volumeDidChange:)name:@"AVSystemController_SystemVolumeDidChangeNotification" object:nil];
        [[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
    

    事件回调

    - (void)volumeDidChange:(NSNotification *)notification
    {
        double i= [(NSNumber *)notification.userInfo[@"AVSystemController_AudioVolumeNotificationParameter"]  doubleValue];
        NSLog(@"=当前音量:%f",i);
    
    }
    

    相关文章

      网友评论

        本文标题:iOS音量事件与回调

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