From f082c62bb40cad3ee93abd5432777ac0905eb374 Mon Sep 17 00:00:00 2001
From: lipengwei <lipengwei@nianben.com>
Date: Fri, 27 Sep 2019 11:16:00 +0800
Subject: [PATCH] 3.8.3

---
 frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h |   15 +++++++++++----
 1 files changed, 11 insertions(+), 4 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h
index 3043268..fbb3e60 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h
@@ -20,22 +20,29 @@
 
 #import <FBSDKShareKit/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