Is it possible to show an alertview with a textbox inside like the AppStore app. It asks for password in such a dialog. I've seen atleast a couple of other third party apps using it. Is it a private API?
|
feedback
|
|
Yes, it's undocumented. To add a text field to UIAlertView, use addTextFieldWithValue: label: method. You call with the default text as the first argument and the text that displays in an empty field as the second. Having done that, you can access the field via using textFieldAtIndex:n - see below.
The next snippet shows how to retrieve the value in the name field:
| |||||||||
feedback
|
|
Here's an "Apple Approved" way of doing it from Tharindu Madushana. I got it from his comment in this page: http://iphonedevelopertips.com/undocumented/alert-with-textfields.html
And finally to get the text back
| ||||
|
feedback
|
|
Jeff Lamarche posted some sample code on his blog to do just this. The formatting looked a bit wonky when I tried it but it's probably a good starting point. | |||
|
feedback
|