一.导入AVFoundation和MediaPlayer
二.导入头文件
//导入头文件
#import <AVFoundation/AVAudioSession.h>
#import <MediaPlayer/MediaPlayer.h>
三.获取当前音量
在viewDidLoad里面获取
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(volumeChanged:) name:@"AVSystemController_SystemVolumeDidChangeNotification" object:nil];
// 获取当前音量
AVAudioSession *audioSession = [AVAudioSession sharedInstance];
CGFloat volume = audioSession.outputVolume;
NSLog(@"系统当前音量 : %f",volume);
方法
- (void)volumeChanged:(NSNotification *)notification
{
[notification.userInfo[@"AVSystemController_AudioVolumeNotificationParameter"] floatValue];
}
四设置当前音量
MPMusicPlayerController *mp=[MPMusicPlayerController applicationMusicPlayer];
mp.volume=0.3;//0为最小1为最大
|