1
可能性の重複:
How to programatically sense the iPhone mute switch?ミュート状態を確認する方法はありますか?
私はミュートスイッチがオンまたはオフにトグルされる天気を私のアプリを確認したいです!しかし、1つの問題があります...それのための機能はありますか?事前に
おかげで
可能性の重複:
How to programatically sense the iPhone mute switch?ミュート状態を確認する方法はありますか?
私はミュートスイッチがオンまたはオフにトグルされる天気を私のアプリを確認したいです!しかし、1つの問題があります...それのための機能はありますか?事前に
おかげで
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.");
}