这将在 ios 5.0 或 ios 5.1 中的 ARC 中处理
我被分配了对象,不需要在 ARC 中释放该对象,那些 ARC 会照顾自己
UIView *customView = [[UIView alloc]init];
[customView setFrame:CGRectMake(kRect)];
[self.view addSubview: customView];
[customView release];
在 ARC customView 版本中,它将自行处理。
如果我说释放到 customView 会发生什么