| 1234567891011121314151617181920212223242526 |
- //
- // AppDelegate.swift
- // macOS Demo
- //
- // Created by Evgenii on 20/07/2016.
- // Copyright © 2016 Marketplacer. All rights reserved.
- //
- import Cocoa
- @NSApplicationMain
- class AppDelegate: NSObject, NSApplicationDelegate {
- func applicationDidFinishLaunching(_ aNotification: Notification) {
- // Insert code here to initialize your application
- }
- func applicationWillTerminate(_ aNotification: Notification) {
- // Insert code here to tear down your application
- }
- }
|