Is it possible to present a UIAlertView and not continue executing the rest of the code in that method until the user responds to the alert?
Thanks in advance.
No, but the easy fix is to split your code at the point you present the UIAlertView - and start the second part from your delegate method when the alert is dismissed.