#import "MBXBenchAppDelegate.h" #import "MBXBenchViewController.h" #import @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