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/FBSDKSharePhotoContent.h | 9 ++++++++- 1 files changed, 8 insertions(+), 1 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h index 427c315..fbb3e60 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKSharePhotoContent.h @@ -20,16 +20,21 @@ #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. @return Array of the photos (FBSDKSharePhoto) */ -@property (nonatomic, copy) NSArray *photos; +@property (nonatomic, copy) NSArray<FBSDKSharePhoto *> *photos; /** Compares the receiver to another photo content. @@ -39,3 +44,5 @@ - (BOOL)isEqualToSharePhotoContent:(FBSDKSharePhotoContent *)content; @end + +NS_ASSUME_NONNULL_END -- Gitblit v1.8.0