如何从ControlCenter实施搜索?

Rol*_*ien 8 ios control-center

我正在尝试实现对Control Center中可用的播放控件的支持.播放/暂停等我处理UIEventTypeRemoteControl事件,并寻找亚型UIEventSubtypeRemoteControlPlay/ UIEventSubtypeRemoteControlPause

但是,当我尝试拖动播放位置时,我没有得到任何事件.是否有不同的处理方法?

Anu*_*put 9

您无法像使用音乐应用时那样使用音轨搜索栏来搜索音轨位置.要使搜索栏与您的应用程序一起使用,该曲目应位于设备的音乐库中.我注意到很多应用程序支持锁定屏幕/控制中心轨道搜索,他们从设备中的音乐库中获取它们的轨道.像SoundCloud这样的应用程序不支持在此时寻找跟踪位置

支持向前和向后搜索的唯一方法是通过前一个/下一个按钮,当长按时发送开始/结束搜索通知.

UIEventSubtypeRemoteControlBeginSeekingBackward, UIEventSubtypeRemoteControlBeginSeekingForward, 
UIEventSubtypeRemoteControlEndSeekingBackward, UIEventSubtypeRemoteControlEndSeekingForward
Run Code Online (Sandbox Code Playgroud)

根据其他答案,似乎现在不可能寻求. /sf/answers/1508909321/,/sf/answers/1463691281/