Hello,
I seem to be getting a memory leak when getting the album artwork for the currently playing item with this code:
MPMediaItem *playingItem = self.musicPlayer.nowPlayingItem;
MPMediaItemArtwork *artwork = [playingItem valueForProperty:MPMediaItemPropertyArtwork];
I have tried [artwork release]; even though I didn't alloc artwork but I am still getting a leak. Any Ideas?
Thanks.