source:
orbit/iOS/Orbit/Orbit/AppDelegate.m
@
067ea71
Last change on this file since 067ea71 was 067ea71, checked in by Steve Castellotti <sc@…>, 10 years ago | |
---|---|
|
|
File size: 2.7 KB |
Line | |
---|---|
1 | // |
2 | // AppDelegate.m |
3 | // Orbit |
4 | // |
5 | // Copyright (c) 2012 Puzzlebox Productions, LLC. All rights reserved. |
6 | // Originally created by Jonathon Horsman. |
7 | // |
8 | // This code is released under the GNU Public License (GPL) version 2 |
9 | // For more information please refer to http://www.gnu.org/copyleft/gpl.html |
10 | // |
11 | |
12 | #import "AppDelegate.h" |
13 | #import "TGAccessoryManager.h" |
14 | #import "TGAccessoryDelegate.h" |
15 | #import "ViewController.h" |
16 | |
17 | @implementation AppDelegate |
18 | |
19 | - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions |
20 | { |
21 | // Override point for customization after application launch. |
22 | [[TGAccessoryManager sharedTGAccessoryManager] setupManagerWithInterval:0.05]; |
23 | [[TGAccessoryManager sharedTGAccessoryManager] setDelegate:(ViewController *)self.window.rootViewController]; |
24 | return YES; |
25 | } |
26 | |
27 | - (void)applicationWillResignActive:(UIApplication *)application |
28 | { |
29 | // Sent when the application is about to move from active to inactive state. This can occur for certain types of temporary interruptions (such as an incoming phone call or SMS message) or when the user quits the application and it begins the transition to the background state. |
30 | // Use this method to pause ongoing tasks, disable timers, and throttle down OpenGL ES frame rates. Games should use this method to pause the game. |
31 | ViewController *rootController = (ViewController *)self.window.rootViewController; |
32 | [rootController appClosed]; |
33 | } |
34 | |
35 | - (void)applicationDidEnterBackground:(UIApplication *)application |
36 | { |
37 | // Use this method to release shared resources, save user data, invalidate timers, and store enough application state information to restore your application to its current state in case it is terminated later. |
38 | // If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits. |
39 | } |
40 | |
41 | - (void)applicationWillEnterForeground:(UIApplication *)application |
42 | { |
43 | // Called as part of the transition from the background to the inactive state; here you can undo many of the changes made on entering the background. |
44 | } |
45 | |
46 | - (void)applicationDidBecomeActive:(UIApplication *)application |
47 | { |
48 | // Restart any tasks that were paused (or not yet started) while the application was inactive. If the application was previously in the background, optionally refresh the user interface. |
49 | ViewController *rootController = (ViewController *)self.window.rootViewController; |
50 | [rootController appForegrounded]; |
51 | } |
52 | |
53 | - (void)applicationWillTerminate:(UIApplication *)application |
54 | { |
55 | // Called when the application is about to terminate. Save data if appropriate. See also applicationDidEnterBackground:. |
56 | [[TGAccessoryManager sharedTGAccessoryManager] teardownManager]; |
57 | } |
58 | |
59 | @end |
Note: See TracBrowser
for help on using the repository browser.