summaryrefslogtreecommitdiff
path: root/ios/MBXAppDelegate.m
blob: 0fbcc6e81fa7ca8a8c4b53c9ffdad6ae0a8762b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
//
//  MBXAppDelegate.m
//  ios
//
//  Created by Justin R. Miller on 1/27/14.
//
//

#import "MBXAppDelegate.h"

#import "MBXViewController.h"

@implementation MBXAppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
{
    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.rootViewController = [MBXViewController new];
    [self.window makeKeyAndVisible];

    return YES;
}

@end