iOS :播放音效
程序员文章站
2022-06-30 12:45:43
AVFoundation/AVFoundation.h 框架
// 创建播放器
// 取MP3文件路径
NSURL *url = [[NSBund...
AVFoundation/AVFoundation.h 框架
// 创建播放器 // 取MP3文件路径 NSURL *url = [[NSBundle mainBundle] URLForResource:@"mySong1.mp3" withExtension:nil]; // 创建播放器 AVPlayer *player = [[AVPlayer alloc] init]; // 播放的音乐 AVPlayerItem *playerItem = [[AVPlayerItem alloc] initWithURL:url]; // 传入播放器 player = [[AVPlayer alloc] initWithPlayerItem:playerItem]; // 播放 [player play];
上一篇: 我真看得到
下一篇: 购买三星手机的五大注意事项