如何从设置 - >声音部分

时间:2015-08-17 09:40:56

标签: ios

我想获得iPOD / iPHONE" Ringer和Alert"设置 - >声音部分的设备音量。我能够获得设备音量,但不能获得铃声和警报音量。

请有人帮我解决这个问题。

提前致谢。

1 个答案:

答案 0 :(得分:0)

试试这个

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

- (void)volumeChanged:(NSNotification *)notification
{
    NSDictionary*dict=notification.userInfo;
    float newVolume =
    [[dict objectForKey:@"AVSystemController_AudioVolumeNotificationParameter"]floatValue];
    // newVolume is value that you need
}

阅读更多信息herehere