码迷,mamicode.com
首页 > 移动开发 > 详细

iOS 设置系统音量和监听系统音量变化

时间:2015-06-16 21:03:48      阅读:145      评论:0      收藏:0      [点我收藏+]

标签:

很简单的调用 

首先在工程引入MediaPlayer.framework

#import <MediaPlayer/MediaPlayer.h>

1. 获取系统音量

// 获取系统音量

    MPVolumeView *volumeView = [[MPVolumeView alloc] init];

   

UISlider *volumeViewSlider= nil;

    for (UIView *view in [volumeView subviews]){

        if ([view.class.description isEqualToString:@"MPVolumeSlider"]){

            volumeViewSlider = (UISlider*)view;

            break;

        }

    }

        float systemVolume = volumeViewSlider.value;

2.监听方法

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

- (void)volumeChanged:(NSNotification *)notification

{

     [notification.userInfo[@"AVSystemController_AudioVolumeNotificationParameter"] floatValue];

}

 3.记得销毁哦

- (void)dealloc

{

    [[NSNotificationCenter defaultCenter] removeObserver:self name:@"AVSystemController_SystemVolumeDidChangeNotification" object:nil];

}

iOS 设置系统音量和监听系统音量变化

标签:

原文地址:http://www.cnblogs.com/Milo-CTO/p/4581662.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!