我正在使用流媒体URL
,我需要创建一个UISlider
(控制音量)和一个指示器(缓冲/加载),如上图中的一个。我正在使用的代码是
_theAudio=[[AVPlayer alloc] initWithURL:streamURL];
[[AVAudioSession sharedInstance] setCategory:AVAudioSessionCategoryPlayback error:nil];
[[AVAudioSession sharedInstance] setActive: YES error: nil];
[[UIApplication sharedApplication] beginReceivingRemoteControlEvents];
[_theAudio play];