欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

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];