我試圖添加一個子視圖一旦按鈕被點擊,然後把它放在前面,並添加一個AVPlayer實例播放電臺流。音頻正在播放,但AVPlayer不可見,我不知道如何使AVPlayer在子視圖中可見。我一直在尋找蘋果圖書館的例子和信息,但它很糟糕。AVPlayer工作,但在子視圖中不可見
這裏是調用方法:
- (IBAction)radioButton:(id)sender {
radioButton.selected=TRUE;
twitterButton.selected=FALSE;
[self.view bringSubviewToFront:radioView];
radioView.hidden = FALSE;
NSURL *url = [NSURL URLWithString:@"http://streaming3.radiocat.net:80/"];
// You may find a test stream at <http://devimages.apple.com/iphone/samples/bipbop/bipbopall.m3u8>.
self.playerItem = [AVPlayerItem playerItemWithURL:url];
//[playerItem addObserver:self forKeyPath:@"status" options:0 context:&ItemStatusContext];
self.player = [AVPlayer playerWithPlayerItem:playerItem];
[self.player play];
}
非常感謝
那麼接受答案中的代碼是什麼讓AVPlayer出現?我們遇到同樣的問題。 – Praxiteles