博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
[翻译] IQAudioRecorderController
阅读量:6716 次
发布时间:2019-06-25

本文共 1314 字,大约阅读时间需要 4 分钟。

IQAudioRecorderController

 

 

IQAudioRecorderController is a drop-in universal library allows to record audio within the app with a nice User Interface. The Audio Recorder produced the .m4a file and returns the path via it's delegate methods.

IQAudioRecorderController是一个单例类,可以录制音频,且界面效果不错.这个音频播放器能生成.m4a文件,通过代理方法来返回文件路径.

 

Screenshot

 

How to use

#import "IQAudioRecorderController.h"@interface ViewController ()
@end@implementation ViewController- (void)recordAction:(id)sender{ IQAudioRecorderController *controller = [[IQAudioRecorderController alloc] init]; controller.delegate = self; [self presentViewController:controller animated:YES completion:nil];}-(void)audioRecorderController:(IQAudioRecorderController *)controller didFinishWithAudioAtPath:(NSString *)filePath{ //Do your custom work with file at filePath.}-(void)audioRecorderControllerDidCancel:(IQAudioRecorderController *)controller{ //Notifying that user has clicked cancel.}@end

 

Attributions

Thanks to  for his brilliant  library.

感谢 Stefan Ceriu 提供的非常好用的SCSiriWaveformView类.

 

LICENSE

Distributed under the MIT License.

遵循MIT协议.

 

Contributions

Any contribution is more than welcome! You can contribute through pull requests and issues on GitHub.

欢迎你提供改进!你可以通过拉分支来贡献源码.

 

Author

If you wish to contact me, email at: 

如果要联系我,请给邮箱  发送邮件.

 

转载地址:http://gskmo.baihongyu.com/

你可能感兴趣的文章
Hibernate Cascade
查看>>
java的技术调用栈图示例
查看>>
IIS 之 功能详解
查看>>
C#Base64编码
查看>>
spring主要的作用?
查看>>
Storm概念学习系列之storm的特性
查看>>
JQuery------$.get()和$.post()传递数据的使用方法
查看>>
Atitti 数据库事务处理 attilax总结
查看>>
Android中动态设置GridView的列数、列宽和行高
查看>>
oracle中修改表名
查看>>
PhpStorm下Laravel代码智能提示
查看>>
IntelliJ IDEA中运行Tomcat报内存溢出(java.lang.OutOfMemoryError: PermGen space)
查看>>
转】 Kafka文件存储机制那些事
查看>>
jquery怎么在点击li标签之后添加一个在class,点击下一个li时删除上一个class?...
查看>>
在Docker中运行web应用
查看>>
spring boot 框架 启动更新项目,以及生成 "实体_"文件
查看>>
android启动模式
查看>>
arcgis api for js入门开发系列七图层控制
查看>>
JavaScript EventLoop
查看>>
新安装个Myeclipse,导入以前做的程序后程序里好多错,提示The import java.util cannot be resolved...
查看>>