From b19a78b27247f5f0761c35b5b3e8a41876eabb05 Mon Sep 17 00:00:00 2001
From: lpw <pengwei.li@gamehollywood.com>
Date: Tue, 20 Apr 2021 17:18:32 +0800
Subject: [PATCH] no message

---
 frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h |   17 ++++++++++++-----
 1 files changed, 12 insertions(+), 5 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h
index 3043268..6d20c3e 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h
@@ -18,24 +18,31 @@
 
 #import <Foundation/Foundation.h>
 
-#import <FBSDKShareKit/FBSDKSharingContent.h>
+#import "FBSDKSharingContent.h"
+
+NS_ASSUME_NONNULL_BEGIN
+
+@class FBSDKSharePhoto;
 
 /**
   A model for photo content to be shared.
  */
+NS_SWIFT_NAME(SharePhotoContent)
 @interface FBSDKSharePhotoContent : NSObject <FBSDKSharingContent>
 
 /**
   Photos to be shared.
- - Returns: Array of the photos (FBSDKSharePhoto)
+ @return Array of the photos (FBSDKSharePhoto)
  */
-@property (nonatomic, copy) NSArray *photos;
+@property (nonatomic, copy) NSArray<FBSDKSharePhoto *> *photos;
 
 /**
   Compares the receiver to another photo 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)isEqualToSharePhotoContent:(FBSDKSharePhotoContent *)content;
 
 @end
+
+NS_ASSUME_NONNULL_END

--
Gitblit v1.8.0