Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
No, implement your own alert view with the desired functionality... – graver Sep 15 '12 at 8:16

2 Answers

If you simply want to add a UITextField after the UIActionSheet is dismissed then add a method that when the ActionSheet gets dismissed then call the method for the TextField.

share|improve this answer

You should implement the UIAlertViewDelegate method :

- (void)alertView:(UIAlertView *)alertView willDismissWithButtonIndex:(NSInteger)buttonIndex

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 :

-(void)dismissWithClickedButtonIndex:(NSInteger)buttonIndex animated:(BOOL)animated 

to avoid dismissing the alertView if a specific button is pressed

share|improve this answer
I don't want to dismiss. – Devfly Sep 15 '12 at 8:50

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.