当前位置:首页 > 操作系统 > Ios

IOS 页面之间的跳转

1.UINavigationController
popToViewController 对应popViewControllerAnimated:
也可以使用:

[self.navigationController popToRootViewControllerAnimated:YES]

 [self.navigationController popToViewController:vc animated:YES];

 

            
UIViewControllerA *aVC = [UIViewControllerA alloc] init]l;
[self.navigationController popToViewController: aVC  animated:YES];
[self.navigationController popViewControllerAnimated:YES]


2.
presentModalViewControllerAnimated对应dismissModalViewControllerAnimated

 

原文:http://www.cnblogs.com/apem/p/4125936.html


【说明】本文章由站长整理发布,文章内容不代表本站观点,如文中有侵权行为,请与本站客服联系(QQ:254677821)!