Xcode debug memory graph showing released object

Viewed 1333

I've been looking in the Xcode Memory Graph tool for a project and was noticing some odd behaviour. Hoping someone might be able to explain what's going on/if I need to worry.

I have a view controller that creates a couple of objects (which aren't doing much at the moment) When I dismiss the view controller sure enough they get released. But one (sometimes both) seem to hang around in the visual debugger:

enter image description here

Only two are ever being created, and both are being deinitialized, confirmed in my consol:

enter image description here

I think I'm correct in saying, I'm not responsible for any of those objects referencing that User object in the image above, so is this a bug, or just something I don't need to worry about?

3 Answers
Related