gpt4 book ai didi

iphone - MPMusicPlayerController 并播放捆绑的歌曲

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

如何使用 MPMusicPlayerController 播放与应用程序捆绑的歌曲文件?

我尝试过的代码,

NSString *url = [[NSBundle mainBundle] pathForResource:@"song1" ofType:@"mp3"];
MPMusicPlayerController *myMusicPlayer=[[MPMusicPlayerController alloc] initWithContentURL:[NSURL fileURLWithPath:url]];
[myMusicPlayer play];

最佳答案

MPMusicPlayer Controller 仅用于播放用户 iPod 库中的项目。 AVAudioPlayer 将从应用程序的沙箱中播放编码文件,您应该能够轻松地转换此代码以使用 AVAudioPlayer...看起来像:

NSString *url = [[NSBundle mainBundle] pathForResource:@"song1" ofType:@"mp3"]; 
AVAudioPlayer *myMusicPlayer=[[AVAudioPlayer alloc]
initWithContentsOfURL:[NSURL fileURLWithPath:url]
error:nil];
[myMusicPlayer play];

关于iphone - MPMusicPlayerController 并播放捆绑的歌曲,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/1636141/

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