Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
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 '09 at 19:11

1 Answer

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.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.