views:

42

answers:

2

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
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