summaryrefslogtreecommitdiff
path: root/platform/ios/benchmark/MBXBenchAppDelegate.m
blob: d1a0ddf943551ba5afce26c197db282d2117b66e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "MBXBenchAppDelegate.h"
#import "MBXBenchViewController.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