我的应用程序开始播放音乐,它出现在现在播放信息,但我找不到如何清理它:摧毁播放器并从Now Playing Info中删除我的应用程序。我正在使用的lib没有实现这一点,我对ios/swift几乎一无所知。这里是代码。This是repo中的问题,如果一些管理员看到这个。这是一个Now Playing Info的示意图
Now Playing Info
9udxz4iz1#
Swift
MPNowPlayingInfoCenter.default().nowPlayingInfo = nil
来源:official Apple documentation
/// The current now playing info for the center. /// Setting the info to nil will clear it. open var nowPlayingInfo: [String : Any]?
bvuwiixz2#
你必须打电话:
UIApplication.shared.endReceivingRemoteControlEvents()
这将从您的锁定屏幕中删除正在播放的信息。
2条答案
按热度按时间9udxz4iz1#
Swift
来源:official Apple documentation
bvuwiixz2#
你必须打电话:
这将从您的锁定屏幕中删除正在播放的信息。