I want to show the keyboard when I start editing a text field.,i am having an email field in my view so that i want to show up key board when i begin editing it...
A:
What is your problem actually? By default a keypad will be shown when UITextField is tapped.
taskinoor
2010-07-29 16:16:33
A:
If you are asking how to open the keyboard automatically with a field when a view is shown try:
-(void)viewDidAppear:(BOOL)animated
{
// do other will appear stuff like call the super
[nameinput becomeFirstResponder];
}
Replace nameInput with your UITextField name. Hope that's what you were asking.
NWCoder
2010-07-29 16:35:50