FBSDKLoginButtonDelegate
A more recent version of this class is available. Check out the latest version.

A delegate for FBSDKLoginButton

Extends Protocol:NSObject
Declared in:FBSDKLoginButton.h
Instance Methods
loginButton:didCompleteWithResult:error:

Sent to the delegate when the button was used to login.

ParameterDescription
loginButton

The sender

result

The results of the login

error

The error (if any) from the login

- (void)
loginButton: (FBSDKLoginButton *)loginButton
didCompleteWithResult: (FBSDKLoginManagerLoginResult *)result
error: (NSError *)error;
Declared In: FBSDKLoginButton.h
loginButtonDidLogOut:

Sent to the delegate when the button was used to logout.

ParameterDescription
loginButton

The button that was clicked.

- (void) loginButtonDidLogOut:(FBSDKLoginButton *)loginButton;
Declared In: FBSDKLoginButton.h
loginButtonWillLogin:

Sent to the delegate when the button is about to login.

ParameterDescription
loginButton

The sender

- (BOOL) loginButtonWillLogin:(FBSDKLoginButton *)loginButton;
Declared In: FBSDKLoginButton.h