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/FBSDKAppLinkTarget.h | 20 +++++++++++++------- 1 files changed, 13 insertions(+), 7 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h index d3e2296..efcb244 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKAppLinkTarget.h @@ -16,11 +16,15 @@ // 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> 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. */ @@ -30,21 +34,23 @@ - (instancetype)init NS_UNAVAILABLE; + (instancetype)new NS_UNAVAILABLE; -/*! Creates a FBSDKAppLinkTarget with the given app site and target URL. */ -+ (instancetype)appLinkTargetWithURL:(NSURL *)url +/** Creates a FBSDKAppLinkTarget with the given app site and target URL. */ ++ (instancetype)appLinkTargetWithURL:(nullable NSURL *)url appStoreId:(nullable NSString *)appStoreId appName:(NSString *)appName NS_SWIFT_NAME(init(url:appStoreId:appName:)); -/*! The URL prefix for this app link target */ -@property (nonatomic, strong, readonly) NSURL *URL; +/** The URL prefix for this app link target */ +@property (nonatomic, strong, readonly, nullable) 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 NS_ASSUME_NONNULL_END + +#endif -- Gitblit v1.8.0