我已经阅读了有关此主题的一些主题,目前有这个:
- (void)viewDidLoad
{
[super viewDidLoad];
NSString *soundFilePath = [NSString stringWithFormat:@"%@/testsoundsr.aiff",
[[NSBundle mainBundle] resourcePath]];
NSURL *soundFileURL = [NSURL fileURLWithPath: soundFilePath];
AVAudioPlayer *player = [[AVAudioPlayer alloc] initWithContentsOfURL:soundFileURL
error:nil];
player.numberOfLoops = -1; //Infinite
[player play];
}
虽然没有播放声音,但我只能想象问题是用于引用文件的NSString定义
我正在尝试播放的文件名为'testsoundsr.aiff',我已将其拖入项目中。我还在项目中添加了几个框架,包括AudioToolBox.framework
--- --- UPDATE
我现在尝试使用.mp3文件,但仍然没有声音。