跳转到下一页:
- 选中按钮
- 按住control键拖动线条到对应的viewController即可
-
选择过渡(Segue)方式,全屏显示可以选择Present Modally,然后选择具体动画。过渡方式随时可以调整~~
点击按钮返回页面
在不使用navigation的情况下,点击按钮返回要怎么写呢?
Step1
假设从页面2返回页面1,那么在页面1对应的controller中写如下代码:
@IBAction func unwindToHome(_ unwindSegue: UIStoryboardSegue) {
// let sourceViewController = unwindSegue.source
// Use data from the view controller which initiated the unwind segue
}
Step2
拖动页面2的返回按钮线条到页面2的Exit控件上,选择对应Segue即可。