zoukankan      html  css  js  c++  java
  • ios程序播放音频文件

    1.控制器代码

    #import "ViewController.h"

    #import <AVFoundation/AVFoundation.h>

    #import "RYAVTool.h"

     

    @interface ViewController ()

     

    @property(nonatomic,strong)NSMutableDictionary*allAvID;

     

    @end

     

    @implementation ViewController

     

    - (void)viewDidLoad {

        [super viewDidLoad];

        

    }

     

     

    -(void)touchesBegan:(NSSet *)touches withEvent:(UIEvent *)event

    {

       self.allAvID= [RYAVTool playAVWithName:@"m_06.wav"];

    }

    //内存警告时清理缓存

    - (void)didReceiveMemoryWarning {

        [super didReceiveMemoryWarning];

        [self.allAvID enumerateKeysAndObjectsUsingBlock:^(id key, id obj, BOOL *stop) {

            AudioServicesDisposeSystemSoundID([obj unsignedIntValue]);

        }];

        

        

    }

    @end

     

    2.辅助工具类代码

    #import <Foundation/Foundation.h>

     

    @interface RYAVTool : NSObject

     

    +(NSMutableDictionary*)playAVWithName:(NSString*)name;

     

    @end

     

    #import "RYAVTool.h"

    #import <AVFoundation/AVFoundation.h>

     

     

    static NSMutableDictionary *_allID;

    static SystemSoundID _currentData;

     

    @implementation RYAVTool

     

    +(void)load

    {

        if (_allID==nil) {

            _allID =[[NSMutableDictionary alloc]init];

        }

    }

     

    +(NSMutableDictionary*)playAVWithName:(NSString*)name

    {

        if (!name) {

            return _allID;

        }

        

        NSString*path=[[NSBundle mainBundle]pathForResource:name ofType:nil];

        if (!path) {

            return _allID;

        }

        NSURL *url=[NSURL fileURLWithPath:path];

        _currentData=[_allID[name] unsignedIntValue];

        if (!_currentData) {

            //创建音频播放文件

            AudioServicesCreateSystemSoundID((__bridge CFURLRef)(url), &_currentData);

            //保存

            _allID[name]=@(_currentData);

        }

        //播放

        AudioServicesPlayAlertSound(_currentData);

        

        return _allID;

    }

    @end

  • 相关阅读:
    Windows Server 2003安装VS2010重命名项目崩溃
    分表处理设计思想和实现[转载]
    XSD中如何定义节点(Element)包含属性(Attribute)和上下文(Context)?
    数据库水平切分的原理探讨、设计思路数据库分库,分表,集群,负载均衡器
    域名注册供参考的200个前缀和后缀
    一个 XSD 实例
    了解Javascript中defer
    Asp.net中慎用Page.DataBind()
    C#中相对路径转绝对路径
    Cookies中Secure使用
  • 原文地址:https://www.cnblogs.com/tangranyang/p/4662504.html
Copyright © 2011-2022 走看看