iOS应用间相互跳转
Posted 低头捡到蛋
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了iOS应用间相互跳转相关的知识,希望对你有一定的参考价值。
一、通过导航控制器UINavigationController跳转
[self.navigationController pushViewController:newController animated:YES]; //跳转到下一页面
[self.navigationController popViewControllerAnimated:YES]; //返回上一页面
[ self .navigationController popToRootViewControllerAnimated: YES ]; //多次跳转后,返回根控制器,即最开始的页面
二、直接跳转
[ self presentViewController:createView animated: YES completion:nil]; //跳转到下一页面
[ self dismissViewControllerAnimated: YES completion: nil ];//返回上一个界面
以上是关于iOS应用间相互跳转的主要内容,如果未能解决你的问题,请参考以下文章