我打開一個子視圖像這樣父視圖:辭退ChildView從ParentViewController
ChildViewController *child = [[ChildViewController alloc] initWithNibName:nil bundle:nil];
[self presentModalViewController:child animated:YES];
這工作完全正常。我需要從父視圖中解除子視圖,但是當我這樣做時,什麼都不會發生。是否因爲父視圖在打開子視圖時會停止其所有進程?或者它是我的代碼:[child dismissModalViewControllerAnimated:YES];
?謝謝
感謝您爲我清理。我以爲你應該從子視圖調用self dismissModalViewControllerAnimated,但我猜不是。 – Preston 2011-03-27 14:47:39