FBLinkShareParams
В последней версии SDK этот класс не доступен.

This object is used to encapsulate state for parameters to a share a link, typically with the Facebook Native Share Dialog or the Message Dialog.

Inherits from:FBDialogsParams
Declared in:FBLinkShareParams.h
Свойства
caption

The caption to be used with the link. Is only used if the link is non-nil.

@property (nonatomic, copy) NSString *caption;
Объявлен в: FBLinkShareParams.h
dataFailuresFatal

If YES, treats any data failures (e.g. failures when getting data for IDs passed through "friends" or "place") as a fatal error, and will not continue with the status update.

@property (nonatomic, assign) BOOL dataFailuresFatal;
Объявлен в: FBLinkShareParams.h
friends

An array of NSStrings or FBGraphUsers to tag in the post. If using NSStrings, the values must represent the IDs of the users to tag.

@property (nonatomic, copy) NSArray *friends;
Объявлен в: FBLinkShareParams.h
linkDescription

The description associated with the link. Is only used if the link is non-nil.

@property (nonatomic, copy) NSString *linkDescription;
Объявлен в: FBLinkShareParams.h
name

The name, or title associated with the link. Is only used if the link is non-nil.

@property (nonatomic, copy) NSString *name;
Объявлен в: FBLinkShareParams.h
picture

The link to a thumbnail to associate with the post. Is only used if the link is non-nil. Only "http" or "https" schemes are supported. Note that this property should not be used to share photos; see the photos property.

@property (nonatomic, copy) NSURL *picture;
Объявлен в: FBLinkShareParams.h
place

An NSString or FBGraphPlace to tag in the status update. If NSString, the value must be the ID of the place to tag.

@property (nonatomic, copy) id place;
Объявлен в: FBLinkShareParams.h
ref

A text reference for the category of the post, used on Facebook Insights.

@property (nonatomic, copy) NSString *ref;
Объявлен в: FBLinkShareParams.h
Методы экземпляров
initWithLink:name:caption:description:picture:

Designated initializer

ПараметрОписание
link

The required link to share

name

The optional name to describe the share

caption

The optional caption to describe the share

description

The optional description to describe the share

picture

The optional url to use as the share's image

- (instancetype)
initWithLink: (NSURL *)link
name: (NSString *)name
caption: (NSString *)caption
description: (NSString *)description
picture: (NSURL *)picture;
Объявлен в: FBLinkShareParams.h