摘要: OC内存管理黄金法则(译文):如果一个对象使用了alloc,[mutable]copy,retain,那么你必须使用相应的release或者autorelease释放。Xcode建立Command Line Tool项目:DogSample,选择手动管理内存,并添加Dog和Person类。Dog有唯一标识的ID属性,Dog.h代码:#import <Foundation/Foundation.h>@interface Dog : NSObject{ int _ID;}@property int ID;@end添加对象retainCount=0时自动调用的dealloc 函数,Dog 阅读全文
posted @ 2012-05-20 21:25 Revey.Jay 阅读(246) 评论(0) 推荐(0) 编辑