在背景中播放声音

时间:2014-06-13 22:28:25

标签: ios objective-c

我已经阅读了有关此主题的一些主题,目前有这个:

- (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文件,但仍然没有声音。

0 个答案:

没有答案