对于使用 ARC 的项目和没有 ARC 的项目,我有两种情况。
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?