vote up 0 vote down star

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.

flag
That is very little code to work on, you must be allocating more memory elsewhere in the application that makes this go over the top. – Garrett Sep 5 at 19:11

1 Answer

vote up 0 vote down

I'm fairly certain that the MPMediaItemArtwork is causing the leak. Instruments listed the leaked objects as MPMediaItemArtwork and MPMediaItemArtworkInternal.

For what it's worth, [artwork release] seems to decrease the leaking and removing the artwork code completely kills the leak.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.