mirror of
https://github.com/TermiT/Flycut.git
synced 2025-02-22 15:05:23 +08:00
31 lines
763 B
Objective-C
31 lines
763 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// FlycutHelper
|
|
//
|
|
// Created by Gennadii Potapov on 21/1/20.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
|
|
@interface AppDelegate ()
|
|
|
|
@property (weak) IBOutlet NSWindow *window;
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification {
|
|
NSArray *pathComponents = [[[NSBundle mainBundle] bundlePath] pathComponents];
|
|
pathComponents = [pathComponents subarrayWithRange:NSMakeRange(0, [pathComponents count] - 4)];
|
|
NSString *path = [NSString pathWithComponents:pathComponents];
|
|
[[NSWorkspace sharedWorkspace] launchApplication:path];
|
|
[NSApp terminate:nil];
|
|
}
|
|
|
|
|
|
- (void)applicationWillTerminate:(NSNotification *)aNotification {
|
|
// Insert code here to tear down your application
|
|
}
|
|
|
|
|
|
@end
|