Is there a way to reduce the volume of the ringer or change the ringer tone on iOS5?
I checked out the Celestial framework, but can\'t instantiate AVSystemControlle
Yes. Use AVSystemController
. You don't instantiate it. It's a singleton.
http://code.google.com/p/iphone-dev/source/browse/trunk/include/include/Celestial/AVSystemController.h?r=136
[[AVSystemController sharedAVSystemController] setVolumeTo:10.0 forCategory:@"Ringtone"];
This might be what you are looking for: Override ringer volume in iPhone apps
Basically, you set the volume using AVAudioPlayer on the -(void)viewDidLoad method of the view you are displaying on