错误分析:在iOS SDK 5.0中使用ARC之后,有时候还是要重写dealloc方法,比如说注销Observer什么的,但是这时候调用[super dealloc]时系统会提示ARC forbids explicit message send of ‘dealloc’。
解决方法::事实上,我们无需在重写的dealloc中添加[super dealloc],因为sdk在编译的时候会自己添加上去。
错误分析:在iOS SDK 5.0中使用ARC之后,有时候还是要重写dealloc方法,比如说注销Observer什么的,但是这时候调用[super dealloc]时系统会提示ARC forbids explicit message send of ‘dealloc’。
解决方法::事实上,我们无需在重写的dealloc中添加[super dealloc],因为sdk在编译的时候会自己添加上去。