From e81c27b13950ca02baa879ae7b8108c0c3ef7fb0 Mon Sep 17 00:00:00 2001
From: hank <hank.zhang@proficientcity.com>
Date: Thu, 20 Jun 2019 09:47:31 +0800
Subject: [PATCH] 添加V3.8.2

---
 frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMessengerGenericTemplateElement.h |   13 +++++++++----
 1 files changed, 9 insertions(+), 4 deletions(-)

diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMessengerGenericTemplateElement.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMessengerGenericTemplateElement.h
index d70dd96..c1ae53a 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMessengerGenericTemplateElement.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKShareMessengerGenericTemplateElement.h
@@ -21,11 +21,14 @@
 #import <FBSDKCoreKit/FBSDKCopying.h>
 #import <FBSDKShareKit/FBSDKShareMessengerActionButton.h>
 
+NS_ASSUME_NONNULL_BEGIN
+
 /**
  A model for sharing a generic template element to Messenger. This allows specifying title, subtitle,
  image, default action, and any other buttons. Title is required. See
  https://developers.facebook.com/docs/messenger-platform/send-messages/template/generic for more details.
  */
+NS_SWIFT_NAME(ShareMessengerGenericTemplateElement)
 @interface FBSDKShareMessengerGenericTemplateElement : NSObject <FBSDKCopying, NSSecureCoding>
 
 /**
@@ -36,21 +39,23 @@
 /**
  The rendered subtitle for the shared generic template element. Optional.
  */
-@property (nonatomic, copy) NSString *subtitle;
+@property (nonatomic, copy, nullable) NSString *subtitle;
 
 /**
  The image url that will be downloaded and rendered at the top of the generic template. Optional.
  */
-@property (nonatomic, copy) NSURL *imageURL;
+@property (nonatomic, copy, nullable) NSURL *imageURL;
 
 /**
  The default action executed when this shared generic tempate is tapped. Title for this button is ignored. Optional.
  */
-@property (nonatomic, copy) id<FBSDKShareMessengerActionButton> defaultAction;
+@property (nonatomic, copy, nullable) id<FBSDKShareMessengerActionButton> defaultAction;
 
 /**
  This specifies what action button to show below the generic template. Optional.
  */
-@property (nonatomic, copy) id<FBSDKShareMessengerActionButton> button;
+@property (nonatomic, copy, nullable) id<FBSDKShareMessengerActionButton> button;
 
 @end
+
+NS_ASSUME_NONNULL_END

--
Gitblit v1.8.0