gpt4 book ai didi

xcode - 如何从XCode4中的代码启动mp3

转载 作者:行者123 更新时间:2023-12-03 00:20:59 25 4
gpt4 key购买 nike

我正在为iOS4编写应用程序。有什么快速方法可以从代码启动mp3文件?只要应用程序正在运行,我就需要循环播放mp3文件。

谢谢。

最佳答案

使用AVAudioPlayer:

NSString *path = [[NSBundle mainBundle] pathForResource:@"sound" ofType:@"mp3"];
AVAudioPlayer *audioPlayer = [[AVAudioPlayer alloc ] initWithContentsOfURL:[NSURL fileURLWithPath:path] error:NULL];
audioPlayer.numberOfLoops = -1; // infinite loops
[audioPlayer play];

这样就可以了。

关于xcode - 如何从XCode4中的代码启动mp3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6767324/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com