ARC を使用するプロジェクトと ARC を使用しないプロジェクトの 2 つのシナリオがあります。
1) ARC を使用しないプロジェクトでは、以下を使用できます。
MyViewController* viewController = [[MyViewController alloc] init];
[self.navigationController pushViewController:viewController animated:YES];
[viewController release];
2)ARCを使用するプロジェクトで上記をどのように達成できますか。
a)where can I allocate memory?
b)where can I release viewcontroller after pushing?
c)is there any standard for it?