28 lines
560 B
Objective-C
28 lines
560 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// IJSVGExample
|
|
//
|
|
// Created by Curtis Hard on 02/09/2014.
|
|
// Copyright (c) 2014 Curtis Hard. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@property (nonatomic, assign) IBOutlet NSWindow *window;
|
|
|
|
@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
|
|
}
|
|
|
|
@end
|