Is there a way to log (check) an object is deallocated when using ARC?
Pre-ARC I often found it useful to do:
-(void)dealloc {
[super dealloc];
NSLog(@"MyObject deallocating");
}
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.
Yes – simply remove
and everything will compile and run as expected.
ARC compiler inserts the call to
super deallocautomatically, and prohibits explicit use ofdeallocin your code.