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