FBSDKAppGroupJoinDialogDelegate Protocol Reference
Conforms to | NSObject |
Declared in | FBSDKAppGroupJoinDialog.h |
Overview
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.
Tasks
-
– appGroupJoinDialog:didCompleteWithResults:
required method -
– appGroupJoinDialog:didFailWithError:
required method -
– appGroupJoinDialogDidCancel:
required method
Instance Methods
appGroupJoinDialog:didCompleteWithResults:
Sent to the delegate when the app group request completes without error.
- (void)appGroupJoinDialog:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog didCompleteWithResults:(NSDictionary *)results
Parameters
- appGroupJoinDialog
The FBSDKAppGroupJoinDialog that completed.
- results
The results from the dialog. This may be nil or empty.
Declared In
FBSDKAppGroupJoinDialog.h
appGroupJoinDialog:didFailWithError:
Sent to the delegate when the app group request encounters an error.
- (void)appGroupJoinDialog:(FBSDKAppGroupJoinDialog *)appGroupJoinDialog didFailWithError:(NSError *)error
Parameters
- appGroupJoinDialog
The FBSDKAppGroupJoinDialog that completed.
- error
The error.
Declared In
FBSDKAppGroupJoinDialog.h