userRegistrationSuccessful() method

Called when the user registration is successful.

Syntax

public virtual void userRegistrationSuccessful ()

Usage

This is true in case of asynchronous user registration only. 
 Usage

 -(IBAction)buttonsPressed:(UIButton*)button{
     ODPUserManager* userManager = [ODPUserManager getInstance:"applicationid"];
     [userManager setConnectionProfileWithHost:@"hostname" port:5001 farm:@"farm" error:nil];
     [userManager setDelegate:self];
     [userManager registerUserWithUser:"username" activationCode:@"act.code" error:nil flag:NO];
 }
                 
              


                 
                      -(void)userRegistrationSuccessful
 {
     // Successful post-processing
 }