iOS :播放音效
程序员文章站
2022-04-04 23:48:25
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];
上一篇: 协程