FBSDKShareAPI
이 클래스의 최신 버전을 사용할 수 있습니다. 확인해보세요 최신 버전.

A utility class for sharing through the graph API. Using this class requires an access token in [FBSDKAccessToken currentAccessToken] that has been granted the "publish_actions" permission.

Conforms to:FBSDKSharing
Inherits from:NSObject
Declared in:FBSDKShareAPI.h
속성
createObjectsWithClientToken

If YES, the objects created through the receiver will be created for app scope with the client token. @default NO

@property (nonatomic, assign) BOOL createObjectsWithClientToken;
정의된 값: FBSDKShareAPI.h
클래스 메서드
shareWithContent:delegate:

Convenience method to build up a share API with content and a delegate.

매개변수설명
content

The content to be shared.

delegate

The receiver's delegate.

+ (instancetype)
shareWithContent: (id<FBSDKSharingContent>)content
delegate: (id<FBSDKSharingDelegate>)delegate;
정의된 값: FBSDKShareAPI.h
인스턴스 메서드
canShare

A Boolean value that indicates whether the receiver can send the share.

- (BOOL) canShare;
Discussion:

May return NO if the appropriate Facebook app is not installed and is required or an access token is required but not available. This method does not validate the content on the receiver, so this can be checked before building up the content.

정의된 값: FBSDKShareAPI.h
createOpenGraphObject:

Creates an Open Graph object without an action.

매개변수설명
openGraphObject

The open graph object to create.

- (BOOL) createOpenGraphObject:(FBSDKShareOpenGraphObject *)openGraphObject;
Discussion:

Use this method to create an object alone, when an action is not going to be posted with the object. If the object will be used within an action, just put the object in the action and share that as the shareContent and the object will be created in the process. The delegate will be messaged with the results.

정의된 값: FBSDKShareAPI.h
share

Begins the send from the receiver.

- (BOOL) share;
정의된 값: FBSDKShareAPI.h