Inherits from NSObject
Declared in FBSDKApplicationDelegate.h

Overview

@class FBSDKApplicationDelegate

@abstract The FBSDKApplicationDelegate is designed to post process the results from Facebook Login or Facebook Dialogs (or any action that requires switching over to the native Facebook app or Safari).

@discussion The methods in this class are designed to mirror those in UIApplicationDelegate, and you should call them in the respective methods in your AppDelegate implementation.

Class Methods

sharedInstance

Gets the singleton instance.

+ (instancetype)sharedInstance

Declared In

FBSDKApplicationDelegate.h

Instance Methods

application:didFinishLaunchingWithOptions:

@abstract Call this method from the [UIApplicationDelegate application:didFinishLaunchingWithOptions:] method of the AppDelegate for your app. It should be invoked for the proper use of the Facebook SDK.

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

Parameters

application

The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:].

launchOptions

The launchOptions as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:].

Return Value

YES if the url was intended for the Facebook SDK, NO if not.

Declared In

FBSDKApplicationDelegate.h

application:openURL:sourceApplication:annotation:

@abstract Call this method from the [UIApplicationDelegate application:openURL:sourceApplication:annotation:] method of the AppDelegate for your app. It should be invoked for the proper processing of responses during interaction with the native Facebook app or Safari as part of SSO authorization flow or Facebook dialogs.

- (BOOL)application:(UIApplication *)application openURL:(NSURL *)url sourceApplication:(NSString *)sourceApplication annotation:(id)annotation

Parameters

application

The application as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].

url

The URL as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].

sourceApplication

The sourceApplication as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].

annotation

The annotation as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].

Return Value

YES if the url was intended for the Facebook SDK, NO if not.

Declared In

FBSDKApplicationDelegate.h