summaryrefslogtreecommitdiff
path: root/platform/ios/benchmark/MBXBenchAppDelegate.m
blob: 522ebb2dbc24c0adb2dd6e7f116cb9f2a0a22605 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "MBXBenchAppDelegate.h"
#import "MBXBenchViewController.h"
#import <Mapbox/Mapbox.h>

@implementation MBXBenchAppDelegate

- (BOOL)application:(UIApplication*)application
    didFinishLaunchingWithOptions:(NSDictionary*)launchOptions {

    self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
    self.window.rootViewController = [MBXBenchViewController new];
    [self.window makeKeyAndVisible];

    return YES;
}

@end