1
我出現了一個使用presentViewController和視圖之間導航的問題。 presentViewController多次創建相同的視圖?或者只有在調用函數時才重新打開視圖(如果它已經打開)?使用presentViewController在視圖之間導航?
例如,如果你調用下一個函數形式三種不同的觀點:
HomeController *homeController = [[HomeController alloc] initWithNibName:nil bundle:nil];
[self presentViewController:homeController animated:YES completion:nil];
你有三個homeControllers或只有一個?
恩,謝謝!
哦,謝謝你,這個信息仍然只是找到儘可能接近的視圖,以避免多次同樣的觀點。 – sgb004
您可以關閉一個模式與'dismissViewControllerAnimated:完成:'。 – garrettmurray
如果是正確的,但它使用的修正得到一個警告: \t [self.presentingViewController dismissViewControllerAnimated:NO完成:零] 作爲秀:http://stackoverflow.com/questions/14907518/modal-view-controllers-how-to-display-and-dismiss – sgb004