Question

Is there any way to change password of the user after login ?

Thanks

Was it helpful?

Solution

Sure

QBUUser *user = [QBUUser user];
user.ID = 300;
user.oldPassword = @"fgrhpass";
user.password = @"newpassword";

[QBUsers updateUser:user delegate:self];
Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top