官方文档说得很清楚http://developer.apple.com/library/ma...
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.
用来在dealloc的时候手动解除delegate关系。