I'm working on a music playing app and in previous iOS versions the media player would show the play/pause as well as the skip and prev buttons. Now, with the 8.4 update, all that is shown is the play/pause. I'm updating the MPNowPlayingInfoCenter in the usual way:
NSDictionary* nowPlayingInfo = @{
MPMediaItemPropertyTitle:[self.currentSong title],
MPMediaItemPropertyArtist:[self.currentSong artist],
MPMediaItemPropertyPlaybackDuration:[NSNumber numberWithDouble:(double) self.duration],
MPNowPlayingInfoPropertyElapsedPlaybackTime: [NSNumber numberWithDouble:(double)self.currentPlaybackTime],
MPNowPlayingInfoPropertyPlaybackRate: self.isPlaying ? @1.0 : @0.0,
MPMediaItemPropertyArtwork: mediaPlayerArtwork,
MPNowPlayingInfoPropertyPlaybackQueueIndex: [NSNumber numberWithInteger:playQueue.queuePosition],
MPNowPlayingInfoPropertyPlaybackQueueCount: [NSNumber numberWithInteger:playQueue.queueIDs.count] };
[[MPNowPlayingInfoCenter defaultCenter] setNowPlayingInfo:nowPlayingInfo];
But the result is...
and
Thanks for any help!