You may implement a dealloc method if you need to manage resources other than releasing instance variables. You do not have to (indeed you cannot) release instance variables, but you may need to invoke [systemClassInstance setDelegate:nil] on system classes and other code that isn’t compiled using ARC.
官方文档说得很清楚http://developer.apple.com/library/ma...
用来在dealloc的时候手动解除delegate关系。
dealloc当然会被调用(通常是以被编译器自动插入代码的方式),也可以实现(尤其是如果有某些非Cocoa对象资源需要管理的时候)。
参考 CLANG 相关文档
仍会在对象彻底释放前调用dealloc方法。
ARC与非ARC的区别:ARC中dealloc中不得显式调用[super dealloc]、不得显式[obj release]。
而无需声明(编译自动生成)dealloc是SDK4就有的特性,和ARC无关。