gpt4 book ai didi

iphone - 使用 AVAudioPlayer 检测 iPhone 的响铃/静音/静音开关不起作用?

转载 作者:行者123 更新时间:2023-12-03 18:15:16 26 4
gpt4 key购买 nike

我尝试使用这些方法来检测响铃/静音开关是否处于事件状态:

How to programmatically sense the iPhone mute switch?

AVAudioSession category not working as documentation dictates

但在我的 iPhone 4 上,“state”值始终为“Speaker”(并且 CFStringGetLength(state) 返回的长度值始终为 7)。有人成功使用过这个方法吗?如果是,在什么样的设备和 SDK 版本上?

我这样调用它:


- (BOOL)deviceIsSilenced {
CFStringRef state;
UInt32 propertySize = sizeof(CFStringRef);
OSStatus audioStatus = AudioSessionGetProperty(kAudioSessionProperty_AudioRoute, &propertySize, &state);
if (audioStatus == kAudioSessionNoError) {
NSLog(@"audio route: %@", state) // "Speaker" regardless of silent switch setting, but "Headphone" when my headphones are plugged in
return (CFStringGetLength(state) <= 0);
}
return NO;
}

-(BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {

AVAudioSession *audioSession = [AVAudioSession sharedInstance];
audioSession.delegate = self;
[audioSession setCategory:AVAudioSessionCategoryAmbient error:nil];
[audioSession setActive:YES error:nil];
NSLog(@"muted? %i", [self deviceIsSilenced]);
...
}

我在想,当手机上的物理开关被切换时,也许会触发其他一些(更准确的)kAudioSessionProperty 事件。大家有什么想法吗?

顺便说一句,我正在将 AVAudioSessionCategoryAmbient 类别与我的 [AVAudioSession sharedInstance] 一起使用。

更新:我还尝试过使用不同的音频类别以及一些其他 Audio Session 属性,但在静音/取消静音开关时似乎没有一个属性会触发。 :(

一月。 2014 年 1 月 1 日更新: 这有点像黑客攻击,我在 iPhone 5S 上使用它进行多任务处理时遇到了崩溃,但是 SoundSwitch如果您想检测静音开关,则可以选择新接受答案中链接的库。它甚至可以在 iOS 7 中运行。

最佳答案

感谢开发者论坛的某人,我找到了答案,你们不会喜欢它的!

I've had a response from Apple on this.

They've said they don't and never have provided a method for detecting hardware mute switch and don't intend to do so.

:(

在我看来,检测静音开关并通知用户以防万一他们忘记了它是打开的,这绝对是有值(value)的……有人提示他们没有任何声音,而静音开关就是原因!哦,好吧。

PS:如果您希望 Apple 添加此功能(当然您愿意!),请在 http://bugreport.apple.com/ 提交“iPhone SDK”的新“增强”错误报告。

更新:虽然仍然没有官方方法来检查静音开关的状态,但有一个名为“SoundSwitch”的解决方法/库似乎可以解决这个问题。查看链接的新接受答案。

关于iphone - 使用 AVAudioPlayer 检测 iPhone 的响铃/静音/静音开关不起作用?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6901363/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com