Called when the user registration is successful.
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 }