summaryrefslogtreecommitdiff
path: root/test/ios/MGLTAppDelegate.m
diff options
context:
space:
mode:
Diffstat (limited to 'test/ios/MGLTAppDelegate.m')
-rw-r--r--test/ios/MGLTAppDelegate.m19
1 files changed, 0 insertions, 19 deletions
diff --git a/test/ios/MGLTAppDelegate.m b/test/ios/MGLTAppDelegate.m
deleted file mode 100644
index b79c2f4abb..0000000000
--- a/test/ios/MGLTAppDelegate.m
+++ /dev/null
@@ -1,19 +0,0 @@
-#import "MGLTAppDelegate.h"
-#import "MGLTViewController.h"
-#import <Mapbox/Mapbox.h>
-
-@implementation MGLTAppDelegate
-
-- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
-{
- self.window = [[UIWindow alloc] initWithFrame:[[UIScreen mainScreen] bounds]];
- UINavigationController *wrapper = [[UINavigationController alloc] initWithRootViewController:[MGLTViewController new]];
- self.window.rootViewController = wrapper;
- wrapper.navigationBarHidden = YES;
- wrapper.toolbarHidden = YES;
- [self.window makeKeyAndVisible];
-
- return YES;
-}
-
-@end