|
LuxChat
2.0
Instant messenger for iOS
|
#import <PFSignUpViewController.h>
Instance Methods | |
Customizing Behavior | |
| (BOOL) | - signUpViewController:shouldBeginSignUp: |
Responding to Actions | |
| (void) | - signUpViewController:didSignUpUser: |
| (void) | - signUpViewController:didFailToSignUpWithError: |
| (void) | - signUpViewControllerDidCancelSignUp: |
The PFLogInViewControllerDelegate protocol defines methods a delegate of a PFSignUpViewController should implement. All methods of this protocol are optional.
| - (void) signUpViewController: | (PFSignUpViewController *) | signUpController | |
| didFailToSignUpWithError: | (nullable NSError *) | error | |
Sent to the delegate when the sign up attempt fails.
| signUpController | The signup view controller where signup failed. |
| error | NSError object representing the error that occured. |
| - (void) signUpViewController: | (PFSignUpViewController *) | signUpController | |
| didSignUpUser: | (PFUser *) | user | |
Sent to the delegate when a PFUser is signed up.
| signUpController | The signup view controller where signup finished. |
| user | PFUser object that is a result of the sign up. |
| - (BOOL) signUpViewController: | (PFSignUpViewController *) | signUpController | |
| shouldBeginSignUp: | (NSDictionary< NSString *, NSString * > *) | info | |
Sent to the delegate to determine whether the sign up request should be submitted to the server.
| signUpController | The signup view controller that is requesting the data. |
| info | An NSDictionary instance which contains all sign up information that the user entered. |
BOOL indicating whether the sign up should proceed. | - (void) signUpViewControllerDidCancelSignUp: | (PFSignUpViewController *) | signUpController |
Sent to the delegate when the sign up screen is cancelled.
| signUpController | The signup view controller where signup was cancelled. |
1.8.9.1