FBSDKWebViewAppLinkResolver.h 797 B

1234567891011121314151617181920212223242526272829303132
  1. /*
  2. * Copyright (c) Meta Platforms, Inc. and affiliates.
  3. * All rights reserved.
  4. *
  5. * This source code is licensed under the license found in the
  6. * LICENSE file in the root directory of this source tree.
  7. */
  8. #if !TARGET_OS_TV
  9. #import <Foundation/Foundation.h>
  10. #import <FBSDKCoreKit/FBSDKAppLinkResolving.h>
  11. NS_ASSUME_NONNULL_BEGIN
  12. /**
  13. A reference implementation for an App Link resolver that uses a hidden WKWebView
  14. to parse the HTML containing App Link metadata.
  15. */
  16. NS_SWIFT_NAME(WebViewAppLinkResolver)
  17. @interface FBSDKWebViewAppLinkResolver : NSObject <FBSDKAppLinkResolving>
  18. /// Gets the instance of a FBSDKWebViewAppLinkResolver.
  19. @property (class, nonatomic, readonly, strong) FBSDKWebViewAppLinkResolver *sharedInstance
  20. NS_SWIFT_NAME(shared);
  21. @end
  22. NS_ASSUME_NONNULL_END
  23. #endif