我正在使用AVFoundation framework
播放声音。在文件的开头,我有:
#import <AVFoundation/AVAudioPlayer.h>
并且AVFoundation framework
已正确添加到我的项目中。但是,当我使用此代码播放声音时,应用程序崩溃:
NSString *pathForBgMusicFile = [[NSBundle mainBundle] pathForResource:@"ClenchedTeeth" ofType:@"mp3"];
NSURL *bgMusicFile = [[NSURL alloc] initFileURLWithPath:pathForBgMusicFile];
AVAudioPlayer *bgMusic = [[AVAudioPlayer alloc] initWithContentsOfURL:bgMusicFile error:NULL];
[bgMusic play];
有谁知道如何解决这一问题?提前致谢!