ios 音乐后台播放

来源:互联网 发布:网络编辑任职要求 编辑:程序博客网 时间:2024/05/16 15:53

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

    }

原创粉丝点击