Initial commit
Message receiving works, sending sort of works
This commit is contained in:
33
MessagesBridge/AppDelegate.m
Normal file
33
MessagesBridge/AppDelegate.m
Normal file
@@ -0,0 +1,33 @@
|
||||
//
|
||||
// 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
|
||||
Reference in New Issue
Block a user