From e0ec4235cc7b8d05ec1aaa414ec2d2cac798d74e Mon Sep 17 00:00:00 2001 From: lpw Date: Sat, 03 Jun 2023 09:18:20 +0800 Subject: [PATCH] 3.15.0 --- frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h | 18 +++++------------- 1 files changed, 5 insertions(+), 13 deletions(-) diff --git a/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h b/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h index c63b6e2..3775cb4 100644 --- a/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h +++ b/frameworks/FBSDKCoreKit.xcframework/ios-arm64_x86_64-maccatalyst/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h @@ -10,9 +10,7 @@ NS_ASSUME_NONNULL_BEGIN -/** - A container class for data attachments so that additional metadata can be provided about the attachment. - */ +/// A container class for data attachments so that additional metadata can be provided about the attachment. NS_SWIFT_NAME(GraphRequestDataAttachment) @interface FBSDKGraphRequestDataAttachment : NSObject @@ -20,7 +18,7 @@ + (instancetype)new NS_UNAVAILABLE; /** - Initializes the receiver with the attachment data and metadata. + Initializes the receiver with the attachment data and metadata. @param data The attachment data (retained, not copied) @param filename The filename for the attachment @param contentType The content type for the attachment @@ -30,19 +28,13 @@ contentType:(NSString *)contentType NS_DESIGNATED_INITIALIZER; -/** - The content type for the attachment. - */ +/// The content type for the attachment. @property (nonatomic, readonly, copy) NSString *contentType; -/** - The attachment data. - */ +/// The attachment data. @property (nonatomic, readonly, strong) NSData *data; -/** - The filename for the attachment. - */ +/// The filename for the attachment. @property (nonatomic, readonly, copy) NSString *filename; @end -- Gitblit v1.8.0