Fireworks/FireworksAppDelegate.m
/* |
Copyright (C) 2016 Apple Inc. All Rights Reserved. |
See LICENSE.txt for this sample’s licensing information |
Abstract: |
Standard app delegate |
*/ |
#import "FireworksAppDelegate.h" |
@implementation FireworksAppDelegate |
// Quit app when the window is closed |
- (BOOL) applicationShouldTerminateAfterLastWindowClosed:(NSApplication *)theApplication { |
return YES; |
} |
- (NSApplicationTerminateReply)applicationShouldTerminate:(NSApplication *)sender { |
return NSTerminateNow; |
} |
@end |
Copyright © 2016 Apple Inc. All Rights Reserved. Terms of Use | Privacy Policy | Updated: 2016-03-10