How to create LoginScreen in UIViewController ? It should appear like UIAlertView after tapping a button.

link|improve this question

80% accept rate
Did you try with yourself ? – Jhaliya Jun 27 '11 at 12:32
feedback

4 Answers

up vote 2 down vote accepted

If you are looking to present a UIAlertView with a textbox, this is not supported in iOS in any public API, although you could walk the view hierarchy and add your own textbox.

Alternatively, create a new UIViewController subclass and present it modally. Then, you can check the values when the view is dismissed.

link|improve this answer
that worked... thanks a lot.. – Surjit Joshi Jun 28 '11 at 4:53
feedback

As of iOS5, UIAlertView now supports a login screen using the Alert Style UIAlertViewStyleLoginAndPasswordInput.

C.f. UIAlertView Class Reference

link|improve this answer
feedback

Have a look at this link, and add username, password fields to UIAlertView.

link|improve this answer
thats nice tutorial.. thanks. – Surjit Joshi Jun 28 '11 at 4:54
feedback

You can subclass UIAlertView and add UITextFields to it and define a designated initializer like this:

  • (id)initWithTitle:(NSString *)title message:(NSString *)message delegate:(id)aDelegate cancelButtonTitle:(NSString *)cancelButtonTitle otherButtonTitle:(NSString *)otherButtonTitle { }

inside this method initialize your textfields and add those as subView to your view (subclassing UIAlertView).

hope it helps you.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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