deleteUserWithError:(NSError **) method

Deletes the application connection or user with which the application has established a connection.

Syntax

public virtual BOOL deleteUserWithError: (NSError ** error)

Parameters

Returns

BOOL indicating if the user has been deleted or not. Usage ODPUserManager* userManager = [ODPUserManager getInstance:"ApplicationId"]; NSError* error = nil; if([userManager deleteUserWithError:&error]) { // Further Processing } else { // Further Error processing using error object }