FBSDKApplicationDelegate
有此級別的更新版本。前往查看 最新版本。

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.

Inherits from:NSObject
Declared in:FBSDKApplicationDelegate.h
類別方式
sharedInstance

Gets the singleton instance.

+ (instancetype) sharedInstance;
執行個體方法
application:didFinishLaunchingWithOptions:

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.

參數說明
application

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

launchOptions

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

- (BOOL)
application: (UIApplication *)application
didFinishLaunchingWithOptions: (NSDictionary *)launchOptions;
application:openURL:sourceApplication:annotation:

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.

參數說明
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:].

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