// // main.m // kordophone // // Created by James Magahern on 11/12/18. // Copyright © 2018 James Magahern. All rights reserved. // #import #import "MBIMBridge.h" int main(int argc, const char * argv[]) { @autoreleasepool { MBIMBridge *bridge = [MBIMBridge sharedInstance]; [bridge connect]; BOOL running = YES; while (running) { [[NSRunLoop currentRunLoop] run]; } } return 0; }