iPhone检测音量键按。

时间:2011-09-23 11:45:01

标签: iphone ios audio avfoundation volume

我需要检测用户何时按下硬件音量键,(App Store安全方法)我尝试了很多没有运气的事情。你知道如何实现这样的功能吗?目前我正在注册通知,但它们似乎没有被调用。这是我的代码:

  AudioSessionInitialize(NULL, NULL, NULL, NULL);
NSNotificationCenter *notificationCenter = [NSNotificationCenter defaultCenter];
[notificationCenter addObserver:self
                       selector:@selector(volumeChanged:) 
                           name:@"AVSystemController_SystemVolumeDidChangeNotification" 
                         object:nil];

接收方法是:

-(void)volumeChanged:(NSNotification *)notification{
         NSLog(@"YAY, VOLUME WAS CHANGED");}

任何提示将不胜感激。

1 个答案:

答案 0 :(得分:4)

您需要在通知发出前启动音频会话:

AudioSessionInitialize(NULL, NULL, NULL, NULL); 
AudioSessionSetActive(true); 

现在您可以订阅通知:

[[NSNotificationCenter defaultCenter] addObserver:self
    selector:@selector(volumeChanged:) 
    name:@"AVSystemController_SystemVolumeDidChangeNotification" 
    object:nil];

获得音量:

float volume = [[[notification userInfo] 
    objectForKey:@"AVSystemController_AudioVolumeNotificationParameter"] 
    floatValue];

您需要存储音量并将其与通知中的先前值进行比较,以了解按下了哪个按钮。

当用户按下音量键时,此解决方案仍会调整系统音量,并显示音量叠加。如果您想避免更改系统音量并显示叠加层(实际上完全重新调整音量键的用途),see this answer