OC高効率52 retainCountを使用しない

465 ワード

#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