1:present 控制器的使用
使用present的方式,從一個(gè)控制器跳轉(zhuǎn)到另一個(gè)控制器的方法如下:
[self? presentViewController:vc? animated:YES? completion:nil];
從下一個(gè)頁面返回上一個(gè)頁面
[self.presentingViewController?? dismissViewControllerAnimated:YES? completion:nil];
2:presentedViewController 與 ?presentingViewController
假設(shè)從A控制器通過present的方式跳轉(zhuǎn)到了B控制器瞧省,那么 A.presentedViewController 就是B控制器屁置;B.presentingViewController 就是A控制器驳规。
3.A->B惑折,B->C术裸,C 如何直接 跳回 A controller旭蠕?
直接在 C 界面調(diào)用
[self.presentingViewController.presentingViewController?? dismissViewController?? Animated:YES? completion:nil];
4.如果多個(gè)控制器都通過 present 的方式跳轉(zhuǎn)呢停团?比如從A跳轉(zhuǎn)到B,從B跳轉(zhuǎn)到C下梢,從C跳轉(zhuǎn)到D客蹋,如何由D直接返回到A呢?
可以通過presentingViewController 一直找到A控制器孽江,然后調(diào)用A控制器的
dismissViewControllerAnimated 方法讶坯。方法如下:
UIViewController *controller = self;
while(controller.presentingViewController != nil){
????controller = controller.presentingViewController;
}
[controller? dismissViewController? Animated:YEScompletion:nil];
PS:如果不是想直接返回到A控制器,比如想回到B控制器岗屏,while循環(huán)的終止條件可以通過控制器的類來判斷辆琅。
關(guān)于 present 的視圖層級(jí):使用presentingViewController屬性可能會(huì)遇到的坑 - 簡(jiǎn)書
官方文檔:View Controller Programming Guide for iOS: Presenting a View Controller