オブジェクトが ARC でどのように解放されるのか理解できませんでした。これについてはまだ混乱が続いています。
メソッドで alloc を使用してView Controllerまたはその他を作成するとします
-(void) displayView
{
RegViewController *sampleView = [[RegViewController alloc] init];
[sampleView setModalTransitionStyle:UIModalTransitionStyleCrossDissolve];
[sampleView setModalPresentationStyle:UIModalPresentationFormSheet];
[self presentModalViewController:sampleView animated:YES];
}
メソッドブロックが完了したときに作成されたオブジェクトを解放しますか、それとも参照に nil を指定して明示的に解放する必要がありますか?