vote up 0 vote down star

I have an object that is a child of UIImageView. Before all these touches methods, I add this object to the superview and then user moves it. In touchesEnded, sometimes I want to release self. I've tried:

- [self release]

or

- [self removeFromSuperview]

But all these tries end up in exceptions. What's the right way to release self?

flag

67% accept rate
1  
You don't. When you add the super view, make sure it is autoreleased or release the reference just after you add it. When you do [self removeFromSuperview] the super view will release it for you. – Jason Coco Aug 6 at 16:53
1  
That's what I did! I just found where the problem was. I moved [super dealloc] in dealloc method from the 1st line to the bottom of dealloc and it works now :) Thank you – Denis M Aug 6 at 18:19
Oh yeah, [super dealloc] always has to be the last thing in your dealloc method otherwise your object will be gone when the method returns :) – Jason Coco Aug 6 at 18:51

Your Answer

Get an OpenID
or

Browse other questions tagged or ask your own question.