In android, ways to get/set stream volume by using AudioManager:
audioManager.getStreamVolume(AudioManager.STREAM_MUSIC)
audioManager.setStreamVolume(AudioManager.STREAM_MUSIC,musicVolume,0)
what are equivalents in iOS?
I managed to find categories in AVAudioSession
and system volume But find no way to set/get specific category volume.