gpt4 book ai didi

ios - AVPlayer 工作但在 subview 中不可见

转载 作者:塔克拉玛干 更新时间:2023-11-02 20:21:55 26 4
gpt4 key购买 nike

我试图在单击按钮后添加一个 subview ,然后将其置于最前面并添加一个 AVPlayer 实例来播放广播流。音频正在播放,但 AVPlayer 不可见,我不确定如何使 AVPlayer 在 subview 中可见。我一直在 Apple Library 中搜索示例和信息,但搜索结果很差。

调用方法如下:

- (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 没有自己的 UI,您必须自己从 UIKit 类创建它,并将相关的 IBAction 消息从它们的操作连接到控制 AVPlayer 实例的方法。

关于ios - AVPlayer 工作但在 subview 中不可见,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10774533/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com