Can you stop UIAlertView from dismissing?
I want based on what button is pressed, to either animate adding a UITextField, or dismiss it. But I can't add a text field after the alert is dismissed.
|
Can you stop UIAlertView from dismissing? I want based on what button is pressed, to either animate adding a UITextField, or dismiss it. But I can't add a text field after the alert is dismissed. |
|||||
|
|
If you simply want to add a |
|||
|
|
|
You should implement the UIAlertViewDelegate method :
and based on the button index you can perform your custom action. Otherwise you should either create your own alertview class or subclass UIAlertView. If you choose to subclass you can override the method :
to avoid dismissing the alertView if a specific button is pressed |
||||
|
|