现在的位置: 首页 > 综合 > 正文

ios 音乐后台播放

2018年05月25日 ⁄ 综合 ⁄ 共 386字 ⁄ 字号 评论关闭

 NSString *musicPath = [[NSBundle mainBundle] pathForResource:@"净土"

                                                          ofType:@"mp3"];

    if (musicPath) 

    {

        NSURL *musicURL = [NSURL fileURLWithPath:musicPath];

        

        [[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];

        audioPlayer = [[AVAudioPlayer alloc] initWithContentsOfURL:musicURL  error:nil];

        [audioPlayer setDelegate:self];

    }

抱歉!评论已关闭.