iOS - 播放音效

2018-04-10  本文已影响0人  一世长安乱

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];
上一篇下一篇

猜你喜欢

热点阅读