summaryrefslogtreecommitdiff
path: root/platform/ios/demo/Examples/AppDelegate.m
blob: 09fe73a4b669c2cb2057431ab74ab229a290a2cf (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
//
//  AppDelegate.m
//  Examples
//
//  Created by Jason Wray on 1/26/16.
//  Copyright © 2016 Mapbox. All rights reserved.
//

#import "AppDelegate.h"

@interface AppDelegate ()

@end
@implementation AppDelegate

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
    // Speed-up Core Animation-based animations in testing scenarios.
    if ([[NSProcessInfo processInfo].arguments containsObject:@"useFastAnimations"]) {
        self.window.layer.speed = 100;
    }

    return YES;
}

@end