/Mobile/iPhone/StoffiRemote/StoffiRemote/StoffiRemoteAppDelegate.m
http://yet-another-music-application.googlecode.com/ · Objective C · 95 lines · 47 code · 19 blank · 29 comment · 0 complexity · 34a555cbc7c3e3f514594c14e01080ad MD5 · raw file
- //
- // StoffiRemoteAppDelegate.m
- // StoffiRemote
- //
- // Created by Fredrik Gadnell on 9/11/11.
- // Copyright 2011 __MyCompanyName__. All rights reserved.
- //
- #import "StoffiRemoteAppDelegate.h"
- #import "GaddREST.h"
- #import "StoffiOAuthManager.h"
- #import "RemoteViewController.h"
- #import "User.h"
- @implementation StoffiRemoteAppDelegate
- @synthesize window=_window;
- - (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions
- {
- // Override point for customization after application launch.
- [self.window makeKeyAndVisible];
-
- // Setup the shared REST client
- [[RESTClient sharedClient] setBaseURL:@"http://alpha.stoffiplayer.com"];
- [[RESTClient sharedClient] setShouldSimulateResponse:YES];
-
- // Basic navigation setup
- nav = [[UINavigationController alloc] init];
- [self.window addSubview:nav.view];
- RemoteViewController *remoteVC = [[RemoteViewController alloc] init];
- [nav pushViewController:remoteVC animated:YES];
- [remoteVC presentLoginScreenAnimated:NO];
-
- return YES;
- }
- - (void)restRequestDidFail:(RESTRequest *)request {
- NSLog(@"Did receive callback from RestRequest: Request failed");
- }
- - (void)restRequest:(RESTRequest *)request didLoadResult:(id)jsonObject {
- NSLog(@"Did receive callbak from RestRequest: %@", jsonObject);
- }
- - (void)applicationWillResignActive:(UIApplication *)application
- {
- /*
- 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.
- 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.
- */
- }
- - (void)applicationDidEnterBackground:(UIApplication *)application
- {
- /*
- 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.
- If your application supports background execution, this method is called instead of applicationWillTerminate: when the user quits.
- */
- }
- - (void)applicationWillEnterForeground:(UIApplication *)application
- {
- /*
- 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.
- */
-
- [[User currentUser] pullConfiguration];
- }
- - (void)applicationDidBecomeActive:(UIApplication *)application
- {
- /*
- 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.
- */
- }
- - (void)applicationWillTerminate:(UIApplication *)application
- {
- /*
- Called when the application is about to terminate.
- Save data if appropriate.
- See also applicationDidEnterBackground:.
- */
- }
- - (void)dealloc
- {
- [_window release];
- [super dealloc];
- }
- @end