可能重复:
What does ‘release’ means in this situation on iPhone?
关于切换2次观看,我正在观看this tutorial。
我不理解第3条指令(奇怪的是作者没有解释它!):为什么release
在alloc
之后呢?
SecondViewController *aSecondView = [[SecondViewController alloc] initWithNibName:@"SecondView" bundle:init];
[self setSecondViewController:aSecondView];
[aSecondView release];
答案 0 :(得分:2)
因为接收方(self
)必须在其setSecondViewController:
实现中保留视图控制器。