34 lines
632 B
Objective-C
34 lines
632 B
Objective-C
//
|
|
// AppDelegate.m
|
|
// MessagesBridge
|
|
//
|
|
// Created by James Magahern on 11/12/18.
|
|
// Copyright © 2018 James Magahern. All rights reserved.
|
|
//
|
|
|
|
#import "AppDelegate.h"
|
|
#import "MBIMBridge.h"
|
|
|
|
@interface AppDelegate ()
|
|
@property (weak) IBOutlet NSWindow *window;
|
|
@property (nonatomic, strong) MBIMBridge *bridge;
|
|
@end
|
|
|
|
@implementation AppDelegate
|
|
|
|
- (void)applicationDidFinishLaunching:(NSNotification *)aNotification
|
|
{
|
|
self.bridge = [[MBIMBridge alloc] init];
|
|
[self.bridge connect];
|
|
}
|
|
|
|
|
|
|
|
|
|
- (void)applicationWillTerminate:(NSNotification *)aNotification {
|
|
// Insert code here to tear down your application
|
|
}
|
|
|
|
|
|
@end
|