MPVolumeView的隐藏和音量键的监听

最近在做关于视频方面的东西,然后参考的播放界面是bilibili,这里遇到的坑和解决的办法记录一下

1. MPVolumeView的隐藏和音量显示的自定义化

我看了一些直播app和一些关于播放视频的app,在屏幕的右边拖动的时候都是调用的原生的音量HUD的显示,但是我们UI参考的是bilibili播放界面,音量HUD的显示就是要自定义,结果我又是接手的二手代码,妮玛,那个坑啊,代码乱就不说了,还妮玛没有注释,悲催,下面就介绍一下怎么去隐藏的系统音量键的HUD
第一个思路用的是MPVolumeView
在vc中懒加载MPVolumeView 通过kvo获取到音量键的UISlider
具体的代码如下

//  oc代码
MPVolumeView *volumeView = [[MPVolumeView alloc] initWithFrame:CGRectZero];
    for (UIView* newView in volumeView.subviews) {
        if ([newView.class.description isEqualToString:@"MPVolumeSlider"]){
            self.volumeSlider = (UISlider*)newView;
            break;
        }
    }
//swift 代码
lazy var volumeView:MPVolumeView = {
        let volumeView:MPVolumeView = MPVolumeView.init()
        for view in volumeView.subviews {
            if (NSStringFromClass(view.classForCoder) == "MPVolumeSlider"){
                actionView.volumeViewSlider = (view as! UISlider)
                break
            }
        }
        volumeView.frame = CGRect(x: -1000, y: -1000, width: 100, height: 100)
        return volumeView
    }()

注意:
1.frame值设置成Zero或者只要不在可视化界面上面展示都可以

  1. MPVolumeView的Hidden不能设置成NO,不然也会在界面上面展示出系统的HUD
    然后在MPVolumeView上面设置一层不透明的视图,就可以让MPVolumeView隐藏掉或者是将MPVolumeView至于视图的最底层

第二个思路用的是MPMusicPlayerController
获取到系统的音量大小的方法

//oc代码
self.startVB = [AVAudioSession sharedInstance].outputVolume
//swift代码
self.startVB = CGFloat(AVAudioSession.sharedInstance().outputVolume)

然后在给系统的音量赋值,但是在iOS7之后苹果就是废除了这个方法,但是oc还能用,swift就不能用了,没有这个属性

//oc代码
[[MPMusicPlayerController applicationMusicPlayer]setVolume:value];

如果有知道在swift上面可以用这个属性的请留言给我说一下

2.音量键的监听

当上上面是通过上下滑动屏幕的方法来改变音量的大小
下面就是通过设备硬件也就是音量键来改变音量大小的方式
直接上代码,没有什么好说的

//oc代码
//监听
NSError *error
[[AVAudioSession  sharedInstance] setActive:YES error:&error]
 [[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(volumeChanged:) name:@"AVSystemController_SystemVolumeDidChangeNotification" object:nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
//监听方法
- (void) volumeChanged:(NSNotification *)notification{
 NSDictionary *userInfo =  notification.userInfo;
 NSString *reasonStr = userInfo[@"AVSystemController_AudioVolumeChangeReasonNotificationParameter"];
if ([reasonStr isEqualToString:@"ExplicitVolumeChange"]){
 self.actionView.brightnessSlider.value = userInfo[@"AVSystemController_AudioVolumeNotificationParameter"] ;
}
}
//移除
- (void)dealloc{
    [[NSNotificationCenter defaultCenter]removeObserver:self];
    [[UIApplication sharedApplication] endReceivingRemoteControlEvents];
}
//swift代码
//监听
do{
            try AVAudioSession.sharedInstance().setActive(true)
        }catch let error as NSError{
            print("\(error)")
        }
        NotificationCenter.default.addObserver(self, selector: #selector(self.changeVolumSlider(notifi:)), name: NSNotification.Name(rawValue: "AVSystemController_SystemVolumeDidChangeNotification"), object: nil)
        UIApplication.shared.beginReceivingRemoteControlEvents()
//监听方法
@objc private func changeVolumSlider(notifi:NSNotification){
        self.actionView.brightnessImageView.image = UIImage.init(named: "C_general_voice")
        self.actionView.brightnessSlider.value = AVAudioSession.sharedInstance().outputVolume
        
        let userInfo:NSDictionary = notifi.userInfo! as NSDictionary
        if ((userInfo["AVSystemController_AudioVolumeChangeReasonNotificationParameter"] as! String) == "ExplicitVolumeChange"){
            print("userInfo----\(userInfo)----->\(AVAudioSession.sharedInstance().outputVolume)")
            self.actionView.brightnessView.isHidden = false
            self.actionView.brightnessSlider.value = (userInfo["AVSystemController_AudioVolumeNotificationParameter"] as! Float)
            DispatchQueue.main.asyncAfter(deadline: .now()+1.5, execute:
                {
                    self.actionView.brightnessView.isHidden = true
            })
        }
    }
//移除
deinit {
        NotificationCenter.default.removeObserver(self, name: NSNotification.Name(rawValue: "AVSystemController_SystemVolumeDidChangeNotification"), object: nil)
        UIApplication.shared.endReceivingRemoteControlEvents()
    }

如果oc的代码单词有错的话请见谅,毕竟是手动敲出来的

你可能感兴趣的:(MPVolumeView的隐藏和音量键的监听)