我不明白这些对象是如何在 ARC 中释放的,这对我来说仍然是一个困惑。
假设我在方法中使用 alloc 创建了一个视图控制器或任何其他控制器
-(void) displayView
{
RegViewController *sampleView = [[RegViewController alloc] init];
[sampleView setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];
[sampleView setModalPresentationStyle:UIModalPresentationFormSheet];
[self presentModalViewController:sampleView animated:YES];
}
它是释放方法块完成时创建的对象,还是我们应该通过给 nil 引用来显式释放?