Referring statement:
Use an unowned reference only when you are sure that the reference always refers to an instance that has not been deallocated.
Weak and unowned can be used interchangeably for outlets?
@IBOutlet weak var OK: UIButton!
Vs
@IBOutlet unowned var OK: UIButton