美文网首页
iOS - 播放音效

iOS - 播放音效

作者: 一世长安乱 | 来源:发表于2018-04-10 16:43 被阅读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];
    

    相关文章

      网友评论

          本文标题:iOS - 播放音效

          本文链接:https://www.haomeiwen.com/subject/nrenhftx.html