In my app I have some sounds.To use these sounds I used AVFoundation,MediaPlayer,AudioToolbox frameworks.The application is running fine in device. But the problem I am facing is when I decrease or increase my device volume then app sound is not effected by that.I want to control my app sound's volume by controlling device volume. Can anybody please tell me how can I do this? Please help. Thanks in advance.

link|improve this question

70% accept rate
feedback

1 Answer

up vote 1 down vote accepted
- (BOOL)application:(UIApplication *)application
didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    [[NSNotificationCenter defaultCenter]
     addObserver:self
     selector:@selector(volumeChanged:)
     name:@"AVSystemController_SystemVolumeDidChangeNotification"
     object:nil];
}

- (void)volumeChanged:(NSNotification *)notification
{
    float volume =
    [[[notification userInfo]
      objectForKey:@"AVSystemController_AudioVolumeNotificationParameter"]
     floatValue];

    // Do stuff with volume
}

and did you start the audio session with AudioSessionSetActive

And suggest you first take the sample code which Apple provided (I use 'aurioTouch'). Maybe it could help you to find out what happened.

link|improve this answer
Thanks it works :) – hgpl Feb 13 at 5:08
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.