Como habilitar o scrubber de áudio no painel de controle do iOS Lock Screen?

Eu tenho o seguinte dicionário para MPNowPlayingInfoCenter

@{MPMediaItemPropertyAlbumTitle: @"First Title",
                                MPMediaItemPropertyArtwork: [[MPMediaItemArtwork alloc] initWithImage:[UIImage imageNamed:@"Album-Cover.jpg"]],
                                MPMediaItemPropertyPlaybackDuration:[NSNumber numberWithDouble:self.storyAudioPlayer.duration],
                                MPNowPlayingInfoPropertyElapsedPlaybackTime:[NSNumber numberWithDouble:self.storyAudioPlayer.currentTime],
                                MPNowPlayingInfoPropertyPlaybackRate:@1.0
                                }

Tudo o resto está funcionando bem, mas não consigo buscar músicas usando o controle deslizante. Como mostrado na imagem. Qual parâmetro estou faltando?

questionAnswers(2)

yourAnswerToTheQuestion