From 7cdaa24f3ba637804aca9247ae809c4cc1acc6ed Mon Sep 17 00:00:00 2001
From: lipengwei <lipengwei@nianben.com>
Date: Wed, 27 May 2020 09:41:28 +0800
Subject: [PATCH] 3.8.4
---
frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h | 73 ++++++++++++++++++++++++------------
1 files changed, 49 insertions(+), 24 deletions(-)
diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h
index 2915d72..14bd9f7 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h
@@ -19,52 +19,77 @@
#import <Foundation/Foundation.h>
#import <FBSDKCoreKit/FBSDKCopying.h>
+#import <FBSDKShareKit/FBSDKSharingValidation.h>
-/*!
- @abstract A model for app invite.
+NS_ASSUME_NONNULL_BEGIN
+
+/**
+ NS_ENUM(NSUInteger, FBSDKAppInviteDestination)
+ Specifies the privacy of a group.
*/
-@interface FBSDKAppInviteContent : NSObject <FBSDKCopying, NSSecureCoding>
+typedef NS_ENUM(NSUInteger, FBSDKAppInviteDestination)
+{
+ /** Deliver to Facebook. */
+ FBSDKAppInviteDestinationFacebook = 0,
+ /** Deliver to Messenger. */
+ FBSDKAppInviteDestinationMessenger,
+} NS_SWIFT_NAME(AppInviteDestination);
-/*!
- @abstract A URL to a preview image that will be displayed with the app invite
+/**
+ A model for app invite.
+ */
+NS_SWIFT_NAME(AppInviteContent)
+@interface FBSDKAppInviteContent : NSObject <FBSDKCopying, FBSDKSharingValidation, NSSecureCoding>
- @discussion This is optional. If you don't include it a fallback image will be used.
+/**
+ A URL to a preview image that will be displayed with the app invite
+
+
+ This is optional. If you don't include it a fallback image will be used.
*/
-@property (nonatomic, copy) NSURL *appInvitePreviewImageURL;
+@property (nonatomic, copy, nullable) NSURL *appInvitePreviewImageURL;
-/*!
- @abstract An app link target that will be used as a target when the user accept the invite.
+/**
+ An app link target that will be used as a target when the user accept the invite.
- @discussion This is a requirement.
+
+ This is a requirement.
*/
@property (nonatomic, copy) NSURL *appLinkURL;
-/*!
- @deprecated Use `appInvitePreviewImageURL` instead.
- */
-@property (nonatomic, copy) NSURL *previewImageURL __attribute__ ((deprecated("use appInvitePreviewImageURL instead")));
+/**
+ Promotional code to be displayed while sending and receiving the invite.
-/*!
- @abstract Promotional code to be displayed while sending and receiving the invite.
- @discussion This is optional. This can be between 0 and 10 characters long and can contain
+ This is optional. This can be between 0 and 10 characters long and can contain
alphanumeric characters only. To set a promo code, you need to set promo text.
*/
-@property (nonatomic, copy) NSString *promotionCode;
+@property (nonatomic, copy, nullable) NSString *promotionCode;
-/*!
- @abstract Promotional text to be displayed while sending and receiving the invite.
+/**
+ Promotional text to be displayed while sending and receiving the invite.
- @discussion This is optional. This can be between 0 and 80 characters long and can contain
+
+ This is optional. This can be between 0 and 80 characters long and can contain
alphanumeric and spaces only.
*/
-@property (nonatomic, copy) NSString *promotionText;
+@property (nonatomic, copy, nullable) NSString *promotionText;
-/*!
- @abstract Compares the receiver to another app invite content.
+/**
+ Destination for the app invite.
+
+
+ This is optional and for declaring destination of the invite.
+ */
+@property (nonatomic, assign) FBSDKAppInviteDestination destination;
+
+/**
+ Compares the receiver to another app invite content.
@param content The other content
@return YES if the receiver's values are equal to the other content's values; otherwise NO
*/
- (BOOL)isEqualToAppInviteContent:(FBSDKAppInviteContent *)content;
@end
+
+NS_ASSUME_NONNULL_END
--
Gitblit v1.8.0