有没有办法检查静音状态?

时间:2011-07-24 16:02:57

标签: ios xcode mute

  

可能重复:
  How to programatically sense the iPhone mute switch?

我希望我的应用程序检查静音开关是否打开或关闭!但是有一个问题......它有功能吗?

提前致谢

1 个答案:

答案 0 :(得分:0)

How to programmatically sense the iPhone mute switch?

我相信这就是你要找的东西。

在此处发布代码:

// "Ambient" makes it respect the mute switch
// Must call this once to init session
if (!gAudioSessionInited)
{
    AudioSessionInterruptionListener    inInterruptionListener = NULL;
    OSStatus    error;
    if ((error = AudioSessionInitialize (NULL, NULL, inInterruptionListener, NULL)))
    {
        NSLog(@"*** Error *** error in AudioSessionInitialize: %d.", error);
    }
    else
    {
        gAudioSessionInited = YES;
    }
}

SInt32  ambient = kAudioSessionCategory_AmbientSound;
if (AudioSessionSetProperty (kAudioSessionProperty_AudioCategory, sizeof (ambient), &ambient))
{
        NSLog(@"*** Error *** could not set Session property to ambient.");
}