我需要在我的应用程序中添加背景声音。我可以在哪里添加它以及如何添加?
问问题
1954 次
1 回答
4
干得好:
将声音添加到 xcode 中的资源文件夹中,然后将此代码添加到您想要播放声音的任何位置的代码中。(以按钮单击方法为例)
NSString *path = [[NSBundle mainBundle]pathForResource:@"NameOfSoundfile" ofType:@"mp3"];
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
[audioPlayer play];
于 2012-04-15T10:27:39.580 回答