FBSDKGraphRequestDataAttachment
Non è disponibile una versione più recente di questa classe. Controlla la versione più recente.

A container class for data attachments so that additional metadata can be provided about the attachment.

Inherits from:NSObject
Declared in:FBSDKGraphRequestDataAttachment.h
Proprietà
contentType

The content type for the attachment.

@property (nonatomic, copy, readonly) NSString *contentType;
data

The attachment data.

@property (nonatomic, strong, readonly) NSData *data;
filename

The filename for the attachment.

@property (nonatomic, copy, readonly) NSString *filename;
Metodi di istanza
initWithData:filename:contentType:

Initializes the receiver with the attachment data and metadata.

ParametroDescrizione
data

The attachment data (retained, not copied)

filename

The filename for the attachment

contentType

The content type for the attachment

- (instancetype)
initWithData: (NSData *)data
filename: (NSString *)filename
contentType: (NSString *)contentType
NS_DESIGNATED_INITIALIZER;