最終更新:2017-02-22 (水) 16:25:55 (2613d)  

Xcode 8.2.1/プロジェクト/macOS/AppDelegate.swift
Top / Xcode 8.2.1 / プロジェクト / macOS / AppDelegate.swift

  • //
    //  AppDelegate.swift
    //  CocoaSampleApp
    //
    //  Created by tokkyo on 2017/02/22.
    //  Copyright © 2017年 onakasuita.org. 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
        }
    
    
    }

関連