From 88188ea7992a90e66db694e9fc1b304a59608044 Mon Sep 17 00:00:00 2001 From: lipengwei <lipengwei@nianben.com> Date: Thu, 26 Sep 2019 12:29:34 +0800 Subject: [PATCH] 3.8.3 --- 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 4bd2d01..bcc048f 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLink.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLink.h @@ -22,16 +22,21 @@ NS_ASSUME_NONNULL_BEGIN -/*! The version of the App Link protocol that this library supports */ -FOUNDATION_EXPORT NSString *const FBSDKAppLinkVersion; +/** 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. */ +NS_SWIFT_NAME(AppLink) @interface FBSDKAppLink : NSObject -/*! +- (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, @@ -44,18 +49,19 @@ */ + (instancetype)appLinkWithSourceURL:(NSURL *)sourceURL targets:(NSArray<FBSDKAppLinkTarget *> *)targets - webURL:(nullable NSURL *)webURL; + webURL:(nullable NSURL *)webURL +NS_SWIFT_NAME(init(sourceURL:targets:webURL:)); -/*! The URL from which this FBSDKAppLink was derived */ +/** The URL from which this FBSDKAppLink was derived */ @property (nonatomic, strong, readonly) 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 -- Gitblit v1.8.0