在网站制作中,页面跳转使用超链接,A标签,非常方便简单,但是在IOSAPP开发中就没那么容易了,需要写比较多的代码,中企动力以下为你一一分享APP页面跳转方法全解。
一、使用StoryBoard点击按钮直接跳转到新页面按住Ctrl键,拖动连接线到目标页面,弹出窗口选择modal则为新页面
如果要选择push,则原页面要实现Navigation导航
二、利用Segue代码跳转在起始页面按住Ctrl键拖动连接线到目标页面,弹出窗口选择动作类型,然后选中页面连线,属性框中命名Indetifier,然后中页面代码处需要跳转地方使用
self.performSegueWithIdentifier(CatSegue,sender:nil)
三、代码PUSHletmainStoryboard=UIStoryboard(name:Main,bundle:NSBundle.mainBundle())
etvc=mainStoryboard.instantiateViewControllerWithIdentifier(CategoryViewController)as!CategoryViewControllerself.navigationController.pushViewController(vc,animated:true)
四、代码ModalletmainStoryboard=UIStoryboard(name:Main,bundle:NSBundle.mainBundle())
etvc=mainStoryboard.instantiateViewControllerWithIdentifier(CategoryViewController)as!CategoryViewControllerself.presentViewController(vc,animated:true,completion:nil)