刻好畫面後,在 ViewController.swift ( MainVC.swift ) 加入「 利用 push 轉畫面 」的程式碼
在專案底下 New Group / New File / 選 Cocoa Touch Class
在 SecondVC.xib 裡新增一個 Lable ,當在 MainVC 按下 Button 後,即可辨別是否跳頁成功;在 SecondVC 按下 Button 後即可跳回 MainVC 。
在 SecondVC.swift 加入跳回 MainVC 的程式碼
在 ViewController.swift ( MainVC.swift ) 加入「 利用 present 轉畫面 」的程式碼
在 SecondVC.swift 加入跳回 MainVC 的程式碼
附上完整程式碼
// MainVC.swift
import UIKit
class MainVC: UIViewController {
@IBOutlet weak var btn: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
self.navigationController?.hidesBarsOnTap = true
}
// MARK: - push
@IBAction func btnAct1(_ sender: UIButton) {
let toSecondVC = SecondVC()
self.navigationController?.pushViewController(toSecondVC, animated: true)
}
// MARK: - present
@IBAction func btnAct2(_ sender: UIButton) {
self.present(SecondVC(), animated: true, completion: nil)
}
}
// SecondVC.swift
import UIKit
class SecondVC: UIViewController {
@IBOutlet weak var btnToMainVC: UIButton!
override func viewDidLoad() {
super.viewDidLoad()
}
// MARK: - push
@IBAction func btnPush(_ sender: UIButton) {
self.navigationController?.popViewController(animated: true)
}
// MARK: - present
@IBAction func btnPresent(_ sender: UIButton) {
self.dismiss(animated: true, completion: nil)
}
}
這樣就完成 push 、 present 轉畫面啦!明天會介紹 Protocol And Delegate,敬請期待!