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/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h | 13 +++++++++---- 1 files changed, 9 insertions(+), 4 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h index 43286dc..bf5215d 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareOpenGraphContent.h @@ -21,14 +21,18 @@ #import <FBSDKShareKit/FBSDKShareOpenGraphAction.h> #import <FBSDKShareKit/FBSDKSharingContent.h> +NS_ASSUME_NONNULL_BEGIN + /** A model for Open Graph content to be shared. */ +NS_SWIFT_NAME(ShareOpenGraphContent) +DEPRECATED_MSG_ATTRIBUTE("Open Graph no longer available; use FBSDKShareLinkContent instead.") @interface FBSDKShareOpenGraphContent : NSObject <FBSDKSharingContent> /** Open Graph Action to be shared. - - Returns: The action + @return The action */ @property (nonatomic, copy) FBSDKShareOpenGraphAction *action; @@ -36,15 +40,16 @@ Property name that points to the primary Open Graph Object in the action. The value that this action points to will be use for rendering the preview for the share. - - Returns: The property name for the Open Graph Object in the action */ @property (nonatomic, copy) NSString *previewPropertyName; /** Compares the receiver to another Open Graph content. - - Parameter content: The other content - - Returns: YES if the receiver's values are equal to the other content's values; otherwise NO + @param content The other content + @return YES if the receiver's values are equal to the other content's values; otherwise NO */ - (BOOL)isEqualToShareOpenGraphContent:(FBSDKShareOpenGraphContent *)content; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0