iOS AVPlayer 播放/暂停按钮问题

发布于 2024-12-03 13:57:55 字数 609 浏览 1 评论 0原文

我正在使用 AVPlayer 使用以下代码播放来自互联网的实时流:

    NSString *u = @"http://192.192.192.192:8036";
NSURL *url = [NSURL URLWithString:u];
radiosound = [[AVPlayer alloc] initWithURL:url];
    [radiosound play]; 

并且我有一个按钮播放:

[radiosound play]; 

和暂停:

[radiosound pause]; 

我的问题是我只想使用一个按钮播放/暂停,但是当我使用此代码时,

if (radiosound.isPlaying) {         
    [radiosound pause]; 
} else {                
     [radiosound play]; 
}

我的应用程序崩溃了,因为 AVPlayer 无法识别“isPlaying”。

有什么建议吗?

I am using AVPlayer to play a live stream from the Internet using the following code :

    NSString *u = @"http://192.192.192.192:8036";
NSURL *url = [NSURL URLWithString:u];
radiosound = [[AVPlayer alloc] initWithURL:url];
    [radiosound play]; 

And I have one button play :

[radiosound play]; 

and Pause :

[radiosound pause]; 

My issue is that I want to use only one button Play/Pause, but when I am using this code

if (radiosound.isPlaying) {         
    [radiosound pause]; 
} else {                
     [radiosound play]; 
}

My app crashes, because AVPlayer doesn´t recognize "isPlaying".

Any tips?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不气馁 2024-12-10 13:57:55

AVPlayer 没有 isPlaying 属性。使用 rate 属性(0.0 表示停止,1.0 表示播放)。

if (radiosound.rate == 1.0) {         
    [radiosound pause]; 
} else {                
     [radiosound play]; 
}

您可以查看 AVPlayer 类参考此处

AVPlayer doesn't have an isPlaying property. Use the rate property (0.0 means stopped, 1.0 playing).

if (radiosound.rate == 1.0) {         
    [radiosound pause]; 
} else {                
     [radiosound play]; 
}

You can look at the AVPlayer class reference here.

酒绊 2024-12-10 13:57:55

经过一番研究,我发现当没有网络连接时,AVPlayer在收到-play消息后仍然将速率设置为1.0。

因此,我还检查了 currentItem 并修改了我的方法,如下所示:

-(BOOL)isPlaying
{
    if (self.player.currentItem && self.player.rate != 0)
    {
        return YES;
    }
    return NO;
}

如果您认为这种方法有问题,请分享您的意见。

After some research I found out that when there is no network connection, AVPlayer still sets the rate to 1.0 after receiving a -play message.

Thus, I also check for the currentItem and modified my method like that:

-(BOOL)isPlaying
{
    if (self.player.currentItem && self.player.rate != 0)
    {
        return YES;
    }
    return NO;
}

Please share your opinion if you think something is wrong with this approach.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文