Is there a way to programmatically mute the sound on OSX without using private APIs and in a way that is accepted by the Mac App Store.

link|improve this question

feedback

2 Answers

FOR MAC OS X: This tutorial might be of assistance.

FOR IOS: No.

Sound Mute is a system-wide setting. So for applications developed using the official SDK cannot change (and in most cases cannot even access) system-wide settings.

It is technically possible to change the system volume through the private AVSystemController class in Celestial.framework, but will prevent your app from getting Apple's approval.

link|improve this answer
feedback

On the Mac, see Srikar's answer. I believe he's got it covered.

On iOS, [MPMusicPlayerController iPodMusicPlayer].volume = 0.0 will mute the audio output. If there is an MPVolumeView present in your view hierarchy, it will do this without visual feedback; if there is not, it may present the volume change popup you see when you press the hardware volume buttons on the device.

link|improve this answer
The question is about Mac OS, the iOS answer is irrelevant to the OP. – Rob Keniger Feb 18 at 6:00
I know. I was being comprehensive. – Jonathan Grynspan Feb 18 at 18:55
feedback

Your Answer

 
or
required, but never shown

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