I implemented the Facebook SDK in my iOS application as recommended by Facebook and in my AppDelegate, which I installed:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
Now I also have handover implemented in my application, and - (BOOL) application:(UIApplication *)application willContinueUserActivityWithType:(NSString *)userActivityType will never be called when the application starts from scratch because FBSDKApplicationDelegate sharedInstance returns false.
So my question is: are there any side effects if I don't return the result of [FBSDKApplicationDelegate sharedInstance]application:didFinishLaunchingWithOptions and [FBSDKApplicationDelegate sharedInstance]application:didFinishLaunchingWithOptions my custom result back? For instance:
- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions{
source share