Mage
Mage

Reputation: 151

How to increase iPhone volume programmatically

In my app I have to play the siren sound on tapping the button, I can able to play it when ringer volume is set to some value, but my problem is when user kept their ringer volume to zero, how can I play it with maximum sound?

Upvotes: 0

Views: 2213

Answers (2)

Rob
Rob

Reputation: 16002

Officially you can't do this. As a smartphones user, I wouldn't appreciate to set my volume at 10% and have an app that rings at max volume.

You can however try to use Celestial.framework, but your application will be rejected from the App Store.

Upvotes: 1

NANNAV
NANNAV

Reputation: 4901

try this code ,it only work in device

[[MPMusicPlayerController applicationMusicPlayer] setVolume:setvalue];

Upvotes: 0

Related Questions