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/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h |   29 +++++++++++++++++++++--------
 1 files changed, 21 insertions(+), 8 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h
index 0c5d0d6..f54c316 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMediaContent.h
@@ -18,24 +18,37 @@
 
 #import <Foundation/Foundation.h>
 
-#import <FBSDKShareKit/FBSDKSharingContent.h>
+#import "FBSDKSharingContent.h"
 
-/*!
- @abstract A model for media content (photo or video) to be shared.
+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>
 
-/*!
- @abstract Media to be shared.
+/**
+  Media to be shared.
  @return Array of the media (FBSDKSharePhoto or FBSDKShareVideo)
  */
-@property (nonatomic, copy) NSArray *media;
+@property (nonatomic, copy) NSArray<id<FBSDKShareMedia>> *media;
 
-/*!
- @abstract Compares the receiver to another media content.
+/**
+  Compares the receiver to another media content.
  @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