AppDelegate.swift 489 B

1234567891011121314151617181920212223242526
  1. //
  2. // AppDelegate.swift
  3. // macOS Demo
  4. //
  5. // Created by Evgenii on 20/07/2016.
  6. // Copyright © 2016 Marketplacer. All rights reserved.
  7. //
  8. import Cocoa
  9. @NSApplicationMain
  10. class AppDelegate: NSObject, NSApplicationDelegate {
  11. func applicationDidFinishLaunching(_ aNotification: Notification) {
  12. // Insert code here to initialize your application
  13. }
  14. func applicationWillTerminate(_ aNotification: Notification) {
  15. // Insert code here to tear down your application
  16. }
  17. }