From bf63695cd124ba0c3127f4cc8aa99c737729dd1d Mon Sep 17 00:00:00 2001 From: hank <hank.zhang@proficientcity.com> Date: Tue, 22 Jan 2019 11:11:33 +0800 Subject: [PATCH] [Update] WAFbImpl (3.8.0) --- frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h | 23 +++++++++++++---------- 1 files changed, 13 insertions(+), 10 deletions(-) diff --git a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h index c179e29..7ad50dc 100644 --- a/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h +++ b/frameworks/FBSDKCoreKit.framework/Headers/FBSDKGraphRequestDataAttachment.h @@ -18,13 +18,16 @@ #import <Foundation/Foundation.h> -/*! - @abstract 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. */ @interface FBSDKGraphRequestDataAttachment : NSObject -/*! - @abstract Initializes the receiver with the attachment data and metadata. +- (instancetype)init NS_UNAVAILABLE; ++ (instancetype)new NS_UNAVAILABLE; + +/** + 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 @@ -34,18 +37,18 @@ contentType:(NSString *)contentType NS_DESIGNATED_INITIALIZER; -/*! - @abstract The content type for the attachment. +/** + The content type for the attachment. */ @property (nonatomic, copy, readonly) NSString *contentType; -/*! - @abstract The attachment data. +/** + The attachment data. */ @property (nonatomic, strong, readonly) NSData *data; -/*! - @abstract The filename for the attachment. +/** + The filename for the attachment. */ @property (nonatomic, copy, readonly) NSString *filename; -- Gitblit v1.8.0