OC高效率52不要使用retainCount

#import "ViewController.h"

@interface ViewController ()

@end

@implementation ViewController
/**
 *  ARC已經廢棄次方法
 *  它所返回的保留計數只是某個給定時間點上的值
 */
//-(NSUInteger)retainCount;

- (void)viewDidLoad {
    [super viewDidLoad];
    // Do any additional setup after loading the view, typically from a nib.
}

- (void)didReceiveMemoryWarning {
    [super didReceiveMemoryWarning];
    // Dispose of any resources that can be recreated.
}

@end
相關文章
相關標籤/搜索