How to change device Volume on iOS - not music volume

后端 未结 9 702
旧时难觅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:18

    You have to use applicationMusicPlayer instead of iPodMusicPlayer to set the system volume:

    #import 
    musicPlayer = [MPMusicPlayerController applicationMusicPlayer];
    musicPlayer.volume = 1; // max volume
    musicPlayer.volume = 0; // min volume (mute)
    musicPlayer.volume = 0.0625; // 1 bar on the overlay volume display
    

提交回复
热议问题