gpt4 book ai didi

iphone - 如何告诉 MPNowPlayingInfoCenter 音乐是在播放还是暂停?

转载 作者:技术小花猫 更新时间:2023-10-29 11:05:01 25 4
gpt4 key购买 nike

我似乎无法让 iOS 在远程音频控件中显示正确的播放/暂停按钮。我确实收到了远程控制事件并设置了 nowPlayingInfo 字典的所有值。

一切正常,我什至在锁定屏幕上看到了一张封面照片。除了暂停/播放按钮。它总是看起来像暂停,即使我的 AVAudioPlayer 正在播放。无论播放状态如何,它都会发送一个暂停事件。

我如何通知 iOS AVAudioPlayer 已暂停并且它现在应该在远程控制按钮栏中显示一个播放按钮?

最佳答案

确保您正在设置 MPNowPlayingInfoPropertyPlaybackRate 属性。 0.0f 表示暂停,1.0f 表示播放。更改这些值时,您还需要设置 MPNowPlayingInfoPropertyElapsedPlaybackTime。

这是示例代码,其中 updateMetadata 是一个将这些更改应用到 MPNowPlayingInfoCenter.nowPlayingInfo 字典的函数。这将向中心表明播放器已暂停。

[self updateMetadata:[NSDictionary dictionaryWithObjectsAndKeys:
[NSNumber numberWithDouble:audioFile.player.currentTime],
MPNowPlayingInfoPropertyElapsedPlaybackTime,
[NSNumber numberWithFloat:0.0f],
MPNowPlayingInfoPropertyPlaybackRate,
nil]];

关于iphone - 如何告诉 MPNowPlayingInfoCenter 音乐是在播放还是暂停?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18706022/

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