-4
我有一個非常簡單的應用程序,應該只播放視圖中的音頻文件。相反,我的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];
}
那麼......錯誤包含了什麼? – borrrden
哪裏測試設備或模擬器? – Alex
@Alex在模擬器上 – user2322662