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/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h | 14 +++++++++++---
1 files changed, 11 insertions(+), 3 deletions(-)
diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h
index edf0f78..ea07c78 100644
--- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h
+++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h
@@ -18,16 +18,22 @@
#import <Foundation/Foundation.h>
+NS_ASSUME_NONNULL_BEGIN
+
/**
A container class for data attachments so that additional metadata can be provided about the attachment.
*/
+NS_SWIFT_NAME(GraphRequestDataAttachment)
@interface FBSDKGraphRequestDataAttachment : NSObject
+
+- (instancetype)init NS_UNAVAILABLE;
++ (instancetype)new NS_UNAVAILABLE;
/**
Initializes the receiver with the attachment data and metadata.
- - Parameter data: The attachment data (retained, not copied)
- - Parameter filename: The filename for the attachment
- - Parameter contentType: The content type for the attachment
+ @param data The attachment data (retained, not copied)
+ @param filename The filename for the attachment
+ @param contentType The content type for the attachment
*/
- (instancetype)initWithData:(NSData *)data
filename:(NSString *)filename
@@ -50,3 +56,5 @@
@property (nonatomic, copy, readonly) NSString *filename;
@end
+
+NS_ASSUME_NONNULL_END
--
Gitblit v1.8.0