Advertisement
Guest User

Untitled

a guest
Nov 25th, 2015
79
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Swift 0.42 KB | None | 0 0
  1. class ViewController: NSViewController {
  2.  
  3.     override func viewDidLoad() {
  4.         if #available(OSX 10.10, *) {
  5.             super.viewDidLoad()
  6.         } else {
  7.             // Fallback on earlier versions
  8.         }
  9.  
  10.         // Do any additional setup after loading the view.
  11.     }
  12.  
  13.     override var representedObject: AnyObject? {
  14.         didSet {
  15.         // Update the view, if already loaded.
  16.         }
  17.     }
  18.  
  19.  
  20. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement