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/FBSDKAppInviteContent.h | 22 ++++++++++------------
1 files changed, 10 insertions(+), 12 deletions(-)
diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h
index 5655983..14bd9f7 100644
--- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h
+++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h
@@ -21,6 +21,8 @@
#import <FBSDKCoreKit/FBSDKCopying.h>
#import <FBSDKShareKit/FBSDKSharingValidation.h>
+NS_ASSUME_NONNULL_BEGIN
+
/**
NS_ENUM(NSUInteger, FBSDKAppInviteDestination)
Specifies the privacy of a group.
@@ -31,11 +33,12 @@
FBSDKAppInviteDestinationFacebook = 0,
/** Deliver to Messenger. */
FBSDKAppInviteDestinationMessenger,
-};
+} NS_SWIFT_NAME(AppInviteDestination);
/**
A model for app invite.
*/
+NS_SWIFT_NAME(AppInviteContent)
@interface FBSDKAppInviteContent : NSObject <FBSDKCopying, FBSDKSharingValidation, NSSecureCoding>
/**
@@ -44,7 +47,7 @@
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;
/**
An app link target that will be used as a target when the user accept the invite.
@@ -55,20 +58,13 @@
@property (nonatomic, copy) NSURL *appLinkURL;
/**
-
-@warning Use `appInvitePreviewImageURL` instead.
- */
-@property (nonatomic, copy) NSURL *previewImageURL
-DEPRECATED_MSG_ATTRIBUTE("use appInvitePreviewImageURL instead");
-
-/**
Promotional code to be displayed while sending and receiving the invite.
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;
/**
Promotional text to be displayed while sending and receiving the invite.
@@ -77,7 +73,7 @@
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;
/**
Destination for the app invite.
@@ -85,7 +81,7 @@
This is optional and for declaring destination of the invite.
*/
-@property FBSDKAppInviteDestination destination;
+@property (nonatomic, assign) FBSDKAppInviteDestination destination;
/**
Compares the receiver to another app invite content.
@@ -95,3 +91,5 @@
- (BOOL)isEqualToAppInviteContent:(FBSDKAppInviteContent *)content;
@end
+
+NS_ASSUME_NONNULL_END
--
Gitblit v1.8.0