Guest User

Faceadd

a guest
Feb 8th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. if (_launchOptions[UIApplicationLaunchOptionsURLKey] == nil) {
  2. [FBSDKAppLinkUtility fetchDeferredAppLink:^(NSURL *url, NSError *error) {
  3. DLog(@"fetchDeferredAppLink");
  4. DLog(@"url = %@, error = %@", url, error);
  5. if (error) {
  6. DLog(@"Received error while fetching deferred app link %@", error);
  7. }
  8. if (url) {
  9. [[UIApplication sharedApplication] openURL:url];
  10. }
  11. }];
  12. }
Add Comment
Please, Sign In to add comment