How to change device Volume on iOS - not music volume

后端 未结 9 719
旧时难觅i
旧时难觅i 2020-11-28 10:30

I want to change the device volume on iOS (iphone).

I know that i can change the volume of music library with this lines below:

//implement at firs         


        
9条回答
  •  旧时难觅i
    2020-11-28 11:35

    Swift 3 - I use this:

    func setVolumeTo(volume: Float) {
      (MPVolumeView().subviews.filter{NSStringFromClass($0.classForCoder) == "MPVolumeSlider"}.first as? UISlider)?.setValue(volume, animated: false)
    }
    

提交回复
热议问题