Vòng đời của 1 View Controller được tính từ lúc nó nạp vào bộ nhớ RAM cho tới khi nó bị huỷ.
1. File ViewController.swift
Vòng đời 1 view controller theo thứ như sau:
override func viewDidLoad() {
super.viewDidLoad()
// Do any additional setup after loading the view.
//Khi ma chuong trinh khoi tao
print("Run 1")
}



