自定义音频播放器控制通知 ios

Custom audio player controls on notification ios

如何实现音频播放器以从 url 流式传输音乐,但我不知道如何将媒体播放器控件放在通知中,例如 gaana 和 saavn 应用程序。 一旦用户播放歌曲通知应显示在通知栏上,用户可以控制播放、暂停、倒回来自通知部分的音频。

enter image description here

简单,不需要第三方库

import MediaPleyer

并在遥控器上添加观察者点赞

MPRemoteCommandCenter.shared().pauseCommand.addTarget(self, action: #selector(self.onPauseRemoteCommand(_:)))
MPRemoteCommandCenter.shared().playCommand.addTarget(self, action: #selector(self.onPlayRemoteCommand(_:)))