详解iOS App中调用AVAudioPlayer播放音频文件的用法
2017-02-06
24
要给工程中添加音频,首先要导入音频的框架 AVFoundation.framework然后新建一个类继承于UIViewController, 我这里就叫FirstVC.首先在 AppDelegate.m中初始化根视图复制代码 代码如下:#import "AppDelegate.h"#import "FirstVC.h"@implementation AppDelegate- (void)dealloc{ [_window release]; [super ...