dealloc方法
时间:2014-12-31 16:09:08
收藏:0
阅读:266
//调用父类dealloc(即[super dealloc])最好放在最后。
- (void)dealloc {
[_name release];
NSLog(@"%@被销毁了", self);
[super dealloc];
}
原文:http://www.cnblogs.com/unity-lan/p/4195757.html
评论(0)