http://iphonedevelopment.blogspot.com/2009/02/alert-view-with-prompt.html
I\'m using that code to get my iPhone app to display an alertView with an included UITextFi
Since this is an old question you've probably figured it out by now, but I was incredibly frustrated with this and couldn't find any help from Google, so for anyone who comes across this in the future: when you call dismissWithClickedbuttonIndex
, the method that gets called is alertView:didDismissWithButtonIndex
, not alertView:clickedButtonAtIndex
. It behaves exactly the same way, and I can't figure out why they'd be two separate methods for what seems to be the same action, but there it is.