Inherits from UIResponder
Conforms to UIApplicationDelegate
Declared in AppDelegate.h
AppDelegate.m

Properties

window

@property (strong, nonatomic) UIWindow *window

Instance Methods

application:didFinishLaunchingWithOptions:

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions

application:handleOpenURL:

Called to invoke the Sign Up Screen from a URL

- (BOOL)application:(UIApplication *)application handleOpenURL:(NSURL *)url

Parameters

application

The application

url

The window

Return Value

TRUE if all OK else return FALSE

Declared In

AppDelegate.m

application:supportedInterfaceOrientationsForWindow:

Called to get supporting device orientations

- (NSUInteger)application:(UIApplication *)application supportedInterfaceOrientationsForWindow:(UIWindow *)window

Parameters

application

The application

window

The window

Return Value

<#return value description#>

Declared In

AppDelegate.m

applicationDidBecomeActive:

- (void)applicationDidBecomeActive:(UIApplication *)application

applicationDidEnterBackground:

- (void)applicationDidEnterBackground:(UIApplication *)application

applicationWillEnterForeground:

- (void)applicationWillEnterForeground:(UIApplication *)application

applicationWillResignActive:

- (void)applicationWillResignActive:(UIApplication *)application

applicationWillTerminate:

- (void)applicationWillTerminate:(UIApplication *)application

parseQueryString:

Parse URL query string paramters into a Dictionary

- (NSDictionary *)parseQueryString:(NSString *)query

Parameters

query

The query string to parse

Return Value

Dictionary of parsed query string parameters

Declared In

AppDelegate.m