vote up 0 vote down star

Hi, Can someone please tell me how to switch off sound in an iPhone Application. Thanks :)

flag

70% accept rate

2 Answers

vote up 2 vote down check

In the view controller that plays your sounds, add an ivar with a @property

BOOL muteSoundFlag // as ivar of view controller
@property (nonatomic, retain) BOOL muteSound; // in header
@synthesize muteSound; // in implementation

Wrap all your sound playing code in an if...block

if (!self.muteSoundFlag) {
	// your sound player code
}

When you want sound muted, set the flag to true

self.muteSoundFlag = YES;

link|flag
Thank you very much. It works flawlessly :) – Steve Oct 25 at 19:03
vote up 0 vote down

Are you talking about stopping any currently playing music when your application is launched? You can have the music fade out when your app is launched by setting the audio category for media playback. Add the code below to your applicationDidFinishLaunching method in the app delegate.

AudioSessionInitialize(NULL, NULL, NULL, self);
UInt32 sessionCategory = kAudioSessionCategory_MediaPlayback;
AudioSessionSetProperty (kAudioSessionProperty_AudioCategory, sizeof(sessionCategory), &sessionCategory);
link|flag
Hey...Thanks for the reply...Actually, I am looking for a way to mute the sounds in my application :). Can you please help me with it – Steve Oct 25 at 3:28
The sound your application plays or sounds the system might play? – Greg Martin Oct 25 at 15:05
Thanks Greg. It is just the sound my application plays :) – Steve Oct 25 at 19:02

Your Answer

Get an OpenID
or

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