我试图实现对Control Center中可用的播放控件的支持。对于播放/暂停等,我处理UIEventTypeRemoteControl
事件并查找子类型UIEventSubtypeRemoteControlPlay
/ UIEventSubtypeRemoteControlPause
等。
然而,当我尝试拖动播放位置时,我没有收到任何事件。是否有不同的处理方法?
答案 0 :(得分:9)
您无法像使用音乐应用时那样使用音轨搜索栏搜索音轨位置。要使搜索栏与您的应用程序一起使用,该曲目应位于设备的音乐库中。我注意到很多应用程序支持锁定屏幕/控制中心轨道搜索,他们从设备中的音乐库中获取它们的轨道。像SoundCloud这样的应用程序不支持在这个时间点寻找跟踪位置
支持向前和向后搜索的唯一方法是通过上一个/下一个按钮,在长按时发送开始/结束搜索通知。
UIEventSubtypeRemoteControlBeginSeekingBackward, UIEventSubtypeRemoteControlBeginSeekingForward,
UIEventSubtypeRemoteControlEndSeekingBackward, UIEventSubtypeRemoteControlEndSeekingForward
根据其他答案,似乎现在不可能寻求。 https://stackoverflow.com/a/21555847/1781918,https://stackoverflow.com/a/20909875/1781918
答案 1 :(得分:0)
活动清单:
UIEventSubtypeRemoteControlPlay
UIEventSubtypeRemoteControlPause
UIEventSubtypeRemoteControlStop
UIEventSubtypeRemoteControlTogglePlayPause
UIEventSubtypeRemoteControlNextTrack
UIEventSubtypeRemoteControlPreviousTrack
// may be it is what you want
UIEventSubtypeRemoteControlBeginSeekingBackward
UIEventSubtypeRemoteControlEndSeekingBackward
UIEventSubtypeRemoteControlBeginSeekingForward
UIEventSubtypeRemoteControlEndSeekingForward
MPNowPlayingInfoCenter也有这个键:
MPNowPlayingInfoPropertyElapsedPlaybackTime;