模板似乎创建[super viewDidUnload]
,但代码示例显示:
[super dealloc]
有区别吗?
答案 0 :(得分:20)
您应该只调用超级类-viewDidUnload
不要直接调用[super dealloc]
,除非是您自己的-dealloc
方法
- (void) viewDidUnload {
...
[super viewDidUnload];
}
和
- (void) dealloc {
//clean up here
[super dealloc];
}