Objective-C:MRC(引用计数器)获得对象所有权的方式(init、retain、copy等)
.h声明文件 1 // Integer.h 2 // 02-MRC 3 // 4 // Created by ma c on 15/8/13. 5 // Copyright (c) 2015年. All rights reserved. 6 // 7 8 #import <Foundation/Foundation.h> 9 10 @interface Integer : NSObject 11 @property(nonatomic,assign)NSInteger i; 12 -(id)initWithI:(NSInteger) i; 13 -(void) print; 14 +(Integer *)integerWithIntger:(NSInteger) i; 15 @end .m实现文件 1 // Integer.m 2 // 02-MRC 3 // 4 // Created by ma c on 15/8/13. 5 // Copyright (c) 2015年. All rights reserved. 6 // 7 8 #import "Integer.h...