From 9fdbb77fd2d766c9aa88f6753108354592770058 Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Thu, 20 Jun 2019 09:50:53 +0800 Subject: [PATCH] [Update] WAFbImpl (3.8.2) --- frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h | 21 +++++++++++++++++---- 1 files changed, 17 insertions(+), 4 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h index 2029422..684a504 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h @@ -20,22 +20,35 @@ #import <FBSDKShareKit/FBSDKSharingContent.h> +NS_ASSUME_NONNULL_BEGIN + +/** + A protocol for media content (photo or video) to be shared. + */ +NS_SWIFT_NAME(ShareMedia) +@protocol FBSDKShareMedia <NSObject> + +@end + /** A model for media content (photo or video) to be shared. */ +NS_SWIFT_NAME(ShareMediaContent) @interface FBSDKShareMediaContent : NSObject <FBSDKSharingContent> /** Media to be shared. - - Returns: Array of the media (FBSDKSharePhoto or FBSDKShareVideo) + @return Array of the media (FBSDKSharePhoto or FBSDKShareVideo) */ -@property (nonatomic, copy) NSArray *media; +@property (nonatomic, copy) NSArray<id<FBSDKShareMedia>> *media; /** Compares the receiver to another media 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)isEqualToShareMediaContent:(FBSDKShareMediaContent *)content; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0