我有兩個ARC和沒有ARC項目的情況。使用ARC推視圖控制器?
1)沒有ARC.we的項目可以使用以下內容。
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?
你有什麼嘗試過,併產生錯誤?其實,很顯然你還沒有嘗試過。如果您使用的是ARC,則代碼甚至無法編譯,因爲您在使用ARC時無法發佈。 – sosborn
ya。我想知道正確的代碼.. –