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

A delegate for FBSDKAppGroupAddDialog.

Discussion:

The delegate is notified with the results of the app group request as long as the application has permissions to receive the information. For example, if the person is not signed into the containing app, the shower may not be able to distinguish between completion of an app group request and cancellation.

Extends Protocol:NSObject
Declared in:FBSDKAppGroupAddDialog.h
인스턴스 메서드
appGroupAddDialog:didCompleteWithResults:

Sent to the delegate when the app group request completes without error.

매개변수설명
appGroupAddDialog

The FBSDKAppGroupAddDialog that completed.

results

The results from the dialog. This may be nil or empty.

- (void)
appGroupAddDialog: (FBSDKAppGroupAddDialog *)appGroupAddDialog
didCompleteWithResults: (NSDictionary *)results;
appGroupAddDialog:didFailWithError:

Sent to the delegate when the app group request encounters an error.

매개변수설명
appGroupAddDialog

The FBSDKAppGroupAddDialog that completed.

error

The error.

- (void)
appGroupAddDialog: (FBSDKAppGroupAddDialog *)appGroupAddDialog
didFailWithError: (NSError *)error;
appGroupAddDialogDidCancel:

Sent to the delegate when the app group dialog is cancelled.

매개변수설명
appGroupAddDialog

The FBSDKAppGroupAddDialog that completed.

- (void) appGroupAddDialogDidCancel:(FBSDKAppGroupAddDialog *)appGroupAddDialog;