我试图通过<条码>AVAudioPlayer<>条码”来操演MP3,我认为这很简单。 不幸的是,它没有很好地发挥作用。 在此,我做了以下工作:
- For the sake of testing, I created a new iOS application (Single View) in Xcode.
I added the AVFoundation framework to the project as well as the
#import <AVFoundation/AVFoundation.h>
to theViewController.m
我在申请文件夹中增加了MP3文件。
页: 1 ViewControllers
viewDidLoad:
to the following:
法典:
- (void)viewDidLoad
{
[super viewDidLoad];
NSString* recorderFilePath = [NSString stringWithFormat:@"%@/MySound.mp3", [NSHomeDirectory() stringByAppendingPathComponent:@"Documents"]];
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:recorderFilePath] error:nil];
audioPlayer.numberOfLoops = 1;
[audioPlayer play];
//[NSThread sleepForTimeInterval:20];
}
不幸的是,声音在开始游戏之后显然停止了。 如果我不赞同<条码> 暂时开放<> 代码>,则该编码为20秒钟,其后停刊。 这一问题只有在与阿农法委员会进行汇编时才会发生,否则,它便徒劳地运作。