For my iOS 7 app, just want to confirm:
dealloc
still get called?Yes, dealloc
is called when an object is deallocated, regardless of whether you are using ARC.
Note however, when you use ARC, you do not need to (in fact you cannot) call [super dealloc]
from your implementation of dealloc
, as ARC does this automatically.