Sometimes i saw this type of codeing in objective-c. Why set _imageView to nil after releasing.
- (void)dealloc {
[_imageView release];
_imageView = nil;
[super dealloc];
}
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
It’s to ensure that you don’t try to reuse the object that you’ve just released.
By setting it to
nil, you ensure that any future messages to it will be tossed away (the behaviour for the standardnilobject) rather than causing a problem.