lpw
2022-02-15 2e29a3a585524a054640bb6e7bdf26fe77ba1f17
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
 * Copyright (c) Meta Platforms, Inc. and affiliates.
 * All rights reserved.
 *
 * This source code is licensed under the license found in the
 * LICENSE file in the root directory of this source tree.
 */
 
#import <UIKit/UIKit.h>
 
#import <FBSDKCoreKit/FBSDKApplicationObserving.h>
 
NS_ASSUME_NONNULL_BEGIN
 
/**
 
  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).
 
 
 
 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.
 */
NS_SWIFT_NAME(ApplicationDelegate)
@interface FBSDKApplicationDelegate : NSObject
 
#if !FBTEST
- (instancetype)init NS_UNAVAILABLE;
+ (instancetype)new NS_UNAVAILABLE;
#endif
 
/**
 Gets the singleton instance.
 */
@property (class, nonatomic, readonly, strong) FBSDKApplicationDelegate *sharedInstance
NS_SWIFT_NAME(shared);
 
/**
  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.
 
 @param application The application as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].
 
 @param url The URL as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].
 
 @param sourceApplication The sourceApplication as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].
 
 @param annotation The annotation as passed to [UIApplicationDelegate application:openURL:sourceApplication:annotation:].
 
 @return YES if the url was intended for the Facebook SDK, NO if not.
 */
- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
  sourceApplication:(nullable NSString *)sourceApplication
         annotation:(nullable id)annotation;
 
/**
  Call this method from the [UIApplicationDelegate application:openURL:options:] 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.
 
 @param application The application as passed to [UIApplicationDelegate application:openURL:options:].
 
 @param url The URL as passed to [UIApplicationDelegate application:openURL:options:].
 
 @param options The options dictionary as passed to [UIApplicationDelegate application:openURL:options:].
 
 @return YES if the url was intended for the Facebook SDK, NO if not.
 */
- (BOOL)application:(UIApplication *)application
            openURL:(NSURL *)url
            options:(NSDictionary<UIApplicationOpenURLOptionsKey, id> *)options;
 
/**
  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.
 As part of SDK initialization basic auto logging of app events will occur, this can be
controlled via 'FacebookAutoLogAppEventsEnabled' key in the project info plist file.
 
 @param application The application as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:].
 
 @param launchOptions The launchOptions as passed to [UIApplicationDelegate application:didFinishLaunchingWithOptions:].
 
 @return True if there are any added application observers that themselves return true from calling `application:didFinishLaunchingWithOptions:`.
   Otherwise will return false. Note: If this method is called after calling `initializeSDK` then the return type will always be false.
 */
- (BOOL)            application:(UIApplication *)application
  didFinishLaunchingWithOptions:(nullable NSDictionary<UIApplicationLaunchOptionsKey, id> *)launchOptions;
 
/**
 Initializes the SDK.
 
 If you are using the SDK within the context of the UIApplication lifecycle, do not use this method.
 Instead use `application: didFinishLaunchingWithOptions:`.
 
 As part of SDK initialization basic auto logging of app events will occur, this can be
 controlled via 'FacebookAutoLogAppEventsEnabled' key in the project info plist file.
 */
- (void)initializeSDK;
 
/**
  Adds an observer that will be informed about application lifecycle events.
 
  @note Observers are weakly held
 */
- (void)addObserver:(id<FBSDKApplicationObserving>)observer;
 
/**
  Removes an observer so that it will no longer be informed about application lifecycle events.
 
  @note Observers are weakly held
 */
- (void)removeObserver:(id<FBSDKApplicationObserving>)observer;
 
@end
 
NS_ASSUME_NONNULL_END