拖拽一个view controller
建立两个新的Swift文件,命名为FirstPage和SecondPage
修改两个view controller的继承的类
拖拽添加两个button
右键拖拽首页的button到第二页,在弹出的窗口中选择show
右键拖拽下一页的button到SecondPageViewController.swift中,添加action方法
在方法中添加代码
@IBAction func backClicked(_ sender: UIButton) {
self.dismiss(animated: true, completion: nil)
}