在iOS中,呈現出modalViewController
是超級簡單:有沒有辦法檢測出有多少個模態視圖控制器?
[self presentModalViewController:controller animated:YES];
或者:
[[[[[UIApplication sharedApplication] delegate] window] rootViewController] presentModalViewController:controller animated:YES];
在一個modalViewController
(如navigationController
),你可以再次提出一個modalViewController
。有沒有辦法檢測出有多少個模態視圖控制器正在呈現?否則,掛鉤presentModalViewController:animated:
和dismissModalViewControllerAnimated:
將是一個好主意?謝謝!
有什麼目標?也許如果你告訴我們知道這一點,我們可以幫助你。 – Peres