I can't retrieve MPMediaItemPropertyArtwork while playing a song from Apple Music with iOS 8.4
I've try to read image of nowPlayingItem
(lldb) po [[[MPMusicPlayerController systemMusicPlayer] nowPlayingItem] valueForProperty:MPMediaItemPropertyArtwork]
<MPConcreteMediaItemArtwork: 0x174478940>
But the object returned is empty:
(lldb) p (CGRect)[[[[MPMusicPlayerController systemMusicPlayer] nowPlayingItem] valueForProperty:MPMediaItemPropertyArtwork] bounds]
(CGRect) $2 = (origin = (x = 0, y = 0), size = (width = 0, height = 0))
And obviously the returned image is always nil
there's another way to get the nowPlayingItem
MPMediaItemPropertyArtwork
image?