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/FBSDKAppLinkTarget.h | 17 +++++++++++------ 1 files changed, 11 insertions(+), 6 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h index 091d66a..99b5f15 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h @@ -20,24 +20,29 @@ NS_ASSUME_NONNULL_BEGIN -/*! +/** Represents a target defined in App Link metadata, consisting of at least a URL, and optionally an App Store ID and name. */ +NS_SWIFT_NAME(AppLinkTarget) @interface FBSDKAppLinkTarget : NSObject -/*! Creates a FBSDKAppLinkTarget with the given app site and target URL. */ +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** Creates a FBSDKAppLinkTarget with the given app site and target URL. */ + (instancetype)appLinkTargetWithURL:(NSURL *)url appStoreId:(nullable NSString *)appStoreId - appName:(NSString *)appName; + appName:(NSString *)appName +NS_SWIFT_NAME(init(url:appStoreId:appName:)); -/*! The URL prefix for this app link target */ +/** The URL prefix for this app link target */ @property (nonatomic, strong, readonly) NSURL *URL; -/*! The app ID for the app store */ +/** The app ID for the app store */ @property (nonatomic, copy, readonly, nullable) NSString *appStoreId; -/*! The name of the app */ +/** The name of the app */ @property (nonatomic, copy, readonly) NSString *appName; @end -- Gitblit v1.8.0