- Wed 08 April 2015
- Studying
Note for Stanford CS193p
Class 2 What's the different between exclamation mark and question mark after the vars? they are same, but exclamation mark means the var will automatical unwrap. @IBOutlet weak var display: UILabel! @IBOutlet weak var display: UILabel? Class 3 Same way to instance array and dictionary var opStack = Array() var …