summaryrefslogtreecommitdiff
path: root/ios/app/MBXAppDelegate.m
blob: f0541b99712a678a986795c5b43f7c12436ec451 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#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 = [[UINavigationController alloc] initWithRootViewController:[MBXViewController new]];
    [self.window makeKeyAndVisible];

    return YES;
}

@end