iOS学习笔记31-音频
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS学习笔记31-音频相关的知识,希望对你有一定的参考价值。
#import <AVFoundation/AVFoundation.h>
@interface ViewController ()
@property(nonatomic,strong)AVAudioPlayer *player;
@end
@implementation ViewController
-(AVAudioPlayer *)player
{
if (!_player) {
NSURL *url = [[NSBundle mainBundle]URLForResource:@"爱火花.mp3" withExtension:nil];
_player = [[AVAudioPlayer alloc]initWithContentsOfURL:url error:nil];
[self.player prepareToPlay];
}
return _player;
}
- (IBAction)play {
[self.player play];
}
- (IBAction)pause:(id)sender {
[self.player pause];
}
- (IBAction)stop {
[self.player stop];
}
以上是关于iOS学习笔记31-音频的主要内容,如果未能解决你的问题,请参考以下文章
对于我的 iOS 笔记应用程序来说,这是最好的 iCloud 方法,其中包含文本、照片、音频和绘图笔记。我应该选择文档存储还是 CloudKit?