How to create LoginScreen in UIViewController ? It should appear like UIAlertView after tapping a button.
feedback
|
|
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. | |||
|
feedback
|
|
As of iOS5, UIAlertView now supports a login screen using the Alert Style | |||
|
feedback
|
|
Have a look at this link, and add username, password fields to UIAlertView. | |||
|
feedback
|
|
You can subclass UIAlertView and add UITextFields to it and define a designated initializer like this:
inside this method initialize your textfields and add those as hope it helps you. | |||
|
feedback
|