From 13e53a03f4d50169d0cf7f72d414753ae6b421ce Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Tue, 22 Jan 2019 11:04:39 +0800 Subject: [PATCH] 添加V3.8.0 --- frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h | 12 +++++++----- 1 files changed, 7 insertions(+), 5 deletions(-) diff --git a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h index fe91142..5655983 100644 --- a/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h +++ b/frameworks/FBSDKShareKit.framework/Headers/FBSDKAppInviteContent.h @@ -19,6 +19,7 @@ #import <Foundation/Foundation.h> #import <FBSDKCoreKit/FBSDKCopying.h> +#import <FBSDKShareKit/FBSDKSharingValidation.h> /** NS_ENUM(NSUInteger, FBSDKAppInviteDestination) @@ -35,7 +36,7 @@ /** A model for app invite. */ -@interface FBSDKAppInviteContent : NSObject <FBSDKCopying, NSSecureCoding> +@interface FBSDKAppInviteContent : NSObject <FBSDKCopying, FBSDKSharingValidation, NSSecureCoding> /** A URL to a preview image that will be displayed with the app invite @@ -55,9 +56,10 @@ /** -- Warning:Use `appInvitePreviewImageURL` instead. +@warning Use `appInvitePreviewImageURL` instead. */ -@property (nonatomic, copy) NSURL *previewImageURL __attribute__ ((deprecated("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. @@ -87,8 +89,8 @@ /** Compares the receiver to another app invite 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)isEqualToAppInviteContent:(FBSDKAppInviteContent *)content; -- Gitblit v1.8.0