我有一个非常简单的应用程序,它应该只在视图中播放音频文件。相反,我的 Xcode 崩溃了。
我正在使用 Xcode 版本 6。我已经实现了 AVFoundation 框架
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *audioPath = [[NSBundle mainBundle] pathForResource:@"Crowd_cheering"
ofType:@"m4a" ];
NSURL *audioURL = [NSURL fileURLWithPath:audioPath];
NSError *error;
self.player = [[AVAudioPlayer alloc] initWithContentsOfURL:audioURL error:&error];
[self.player play];
}