From 49b8839fda3439edc31581527e84036e58f55f0f Mon Sep 17 00:00:00 2001 From: lpw <pengwei.li@gamehollywood.com> Date: Tue, 26 Jan 2021 09:43:00 +0800 Subject: [PATCH] 3.9.2 --- frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLink.h | 22 ++++++++++++++-------- 1 files changed, 14 insertions(+), 8 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLink.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLink.h index ece8f61..9d681b2 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLink.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLink.h @@ -16,17 +16,21 @@ // IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN // CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. +#import "TargetConditionals.h" + +#if !TARGET_OS_TV + #import <Foundation/Foundation.h> #import "FBSDKAppLinkTarget.h" NS_ASSUME_NONNULL_BEGIN -/*! The version of the App Link protocol that this library supports */ +/** The version of the App Link protocol that this library supports */ FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersion NS_SWIFT_NAME(AppLinkVersion); -/*! +/** Contains App Link metadata relevant for navigation on this device derived from the HTML at a given URL. */ @@ -36,7 +40,7 @@ - (instancetype)init NS_UNAVAILABLE; + (instancetype)new NS_UNAVAILABLE; -/*! +/** Creates a FBSDKAppLink with the given list of FBSDKAppLinkTargets and target URL. Generally, this will only be used by implementers of the FBSDKAppLinkResolving protocol, @@ -47,23 +51,25 @@ from App Link metadata. @param webURL the fallback web URL, if any, for the app link. */ -+ (instancetype)appLinkWithSourceURL:(NSURL *)sourceURL ++ (instancetype)appLinkWithSourceURL:(nullable NSURL *)sourceURL targets:(NSArray<FBSDKAppLinkTarget *> *)targets webURL:(nullable NSURL *)webURL NS_SWIFT_NAME(init(sourceURL:targets:webURL:)); -/*! The URL from which this FBSDKAppLink was derived */ -@property (nonatomic, strong, readonly) NSURL *sourceURL; +/** The URL from which this FBSDKAppLink was derived */ +@property (nonatomic, strong, readonly, nullable) NSURL *sourceURL; -/*! +/** The ordered list of targets applicable to this platform that will be used for navigation. */ @property (nonatomic, copy, readonly) NSArray<FBSDKAppLinkTarget *> *targets; -/*! The fallback web URL to use if no targets are installed on this device. */ +/** The fallback web URL to use if no targets are installed on this device. */ @property (nonatomic, strong, readonly, nullable) NSURL *webURL; @end NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0