AppDelegate.m 392 B

123456789101112131415161718
  1. #import "AppDelegate.h"
  2. @interface AppDelegate ()
  3. @property (assign) IBOutlet NSWindow *window;
  4. @end
  5. @implementation AppDelegate
  6. - (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
  7. // Insert code here to initialize your application
  8. }
  9. - (void)applicationWillTerminate:(NSNotification *)aNotification {
  10. // Insert code here to tear down your application
  11. }
  12. @end