在locking屏幕上设置和访问iOS查找栏

我正在使用AVQueuePlayer / AVFoundation在iOS应用程序中播放audio文件。 我已经设置了MPNowPlayingInfoCenter现在正在播放像专辑标题,艺术家,艺术品这样的信息

NSMutableDictionary *albumInfo = [[NSMutableDictionary alloc] init];
MPMediaItemArtwork *artworkP;
UIImage *artWork = [UIImage imageNamed:album.imageUrl];
[albumInfo setObject:album.title forKey:MPMediaItemPropertyTitle];
[albumInfo setObject:album.auther forKey:MPMediaItemPropertyArtist];
[albumInfo setObject:album.title forKey:MPMediaItemPropertyAlbumTitle];
[albumInfo setObject:artworkP forKey:MPMediaItemPropertyArtwork];
[[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:albumInfo]

并在应用程序委托中访问远程事件进行播放,暂停,接下来,从locking屏幕上一个事件。 但是search栏不可访问,即使我没有find任何设置search属性的选项。

我想设置seek属性,并希望访问我的应用程序中的查找滑块更改事件。

这是锁定屏幕的屏幕截图。

我相信支持前进和后退寻求的唯一方法是通过上一个/前进button(当按下时发送开始/结束寻求通知)。

 UIEventSubtypeRemoteControlBeginSeekingBackward, UIEventSubtypeRemoteControlBeginSeekingForward, UIEventSubtypeRemoteControlEndSeekingBackward, UIEventSubtypeRemoteControlEndSeekingForward 

基于其他一些问题和文档,search栏只能通过苹果自己的应用程序访问( https://stackoverflow.com/a/20142141/535632,https://stackoverflow.com/a/20909875/535632 )。 根据最后一个答案,看起来有些应用程序(特别是Spotify)通过音乐播放器路由他们的音乐来利用search栏。