Static Method which deletes the application connection/user with which the application has established a connection.
NSError* error = nil; if([userManager deleteUser:"username" password:@"password" error:&error];) { // Further Processing } else { // Further Error processing using error object }
A BOOL is returned indicating if the user has been deleted or not.