在[super dealloc]前释放对象
来源:网络 责任编辑:栏目编辑 发表时间:2013-07-01 13:31 点击:次
如题
正确做法:
[cpp]
- (void)dealloc {
[viewController release];
[window release];
[super dealloc];
}
错误做法
[cpp]
- (void)dealloc {
[super dealloc];
[viewController release];
[window release];
}
super都被dealloc掉了,还咋么访问其包含的变量呢?
摘自 alexjames_83
相关新闻>>
最新推荐更多>>>
热门新闻进入移动开发频道>>
- 发表评论
-
- 最新评论 更多>>