如何自定义音量调节条

记录

在VC中新增如下代码

 // Add MPVolumeView in a holder view
        let mpVolumeHolderView = UIView(frame: CGRect(x: 0, y: 0, width: view.bounds.width, height: view.bounds.height))
         // Set the holder view’s background color to transparent
         mpVolumeHolderView.backgroundColor = .clear
        let mpVolume = MPVolumeView(frame: mpVolumeHolderView.bounds)
        mpVolume.showsRouteButton = true
        mpVolumeHolderView.addSubview(mpVolume)
        view.addSubview(mpVolumeHolderView)
        // the volume view is white, set the parent background to black to show it better in this example
        view.backgroundColor = .black

如果要隐藏,就加入一个延时
伪代码

....setVolume(1, animate: false)
最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
平台声明:文章内容(如有图片或视频亦包括在内)由作者上传并发布,文章内容仅代表作者本人观点,简书系信息发布平台,仅提供信息存储服务。