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 AVSystemController. :-(

I don't care if this get's the app rejected in the AppStore as it will never be submitted.

link|improve this question

feedback

2 Answers

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"];
link|improve this answer
Could you provide an example, please? – Fernando Feb 17 at 9:35
@Fernando I've edited my answer. – edc1591 Feb 17 at 13:16
I tried including the file you linked, but I get the following error: Undefined symbols for architecture i386: "_OBJC_CLASS_$_AVSystemController", referenced from: objc-class-ref in FRRViewController.o ld: symbol(s) not found for architecture i386 Besides, there's not setVolumeTo:forCategory: method in the linked file. – Fernando Feb 19 at 17:46
It simply may not exist in the simulator — have you tested on device? You could use [[NSClassFromString(@"AVSystemController") sharedAVSystemController]... to produce code that works either way if that's the cause. – Tommy Feb 19 at 19:17
1  
You have to link against the Celestial framework. Or you can do what Tommy suggested if you want to avoid linking against it. – edc1591 Feb 19 at 22:13
show 4 more comments
feedback

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

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.