34 lines
668 B
Mathematica
34 lines
668 B
Mathematica
|
/*
|
||
|
* This file is part of the SDWebImage package.
|
||
|
* (c) DreamPiggy <lizhuoli1126@126.com>
|
||
|
*
|
||
|
* For the full copyright and license information, please view the LICENSE
|
||
|
* file that was distributed with this source code.
|
||
|
*/
|
||
|
|
||
|
#import "AppDelegate.h"
|
||
|
|
||
|
@interface AppDelegate ()
|
||
|
|
||
|
|
||
|
@end
|
||
|
|
||
|
@implementation AppDelegate
|
||
|
|
||
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
||
|
// Insert code here to initialize your application
|
||
|
}
|
||
|
|
||
|
|
||
|
- (void)applicationWillTerminate:(NSNotification *)aNotification {
|
||
|
// Insert code here to tear down your application
|
||
|
}
|
||
|
|
||
|
|
||
|
- (BOOL)applicationSupportsSecureRestorableState:(NSApplication *)app {
|
||
|
return YES;
|
||
|
}
|
||
|
|
||
|
|
||
|
@end
|