I have an UIAlertView
that I'd like to keep reshowing to the user when they are resetting their password and asked to provide a new password. I then validate the input with my own custom method, and return an error if there was one. If no error occurred, that variable will be nil
. I'd like to reshow the initial UIAlertView
instead of making it disappear and never come back after an error occurs. If the user presses Cancel, then it should disappear, but not with the OK button until validation is correct.
I have it working at the moment, except for the reshowing.
Anyone know how to do this?