Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am creating an App with phonegap framework in IOS. I have a few input boxes which are created through phonegap in html/javascript. I want to have soft keyboard of type [UIKeyboardTypeEmailAddress] for one of the input boxes.

My code in AppDelegate.h is as follows:

@property (nonatomic, strong) IBOutlet UITextField* textField;
- (void) setKeyboardType: (UIKeyboardType)newType; 

And for AppDelegate.m, it is as follows:

@synthesize  textField;

//function definition
- (void) setKeyboardType: (UIKeyboardType) newType  
{  
    //NSLog(@"setKeyboardType: %@", newType);
    textField.keyboardType = newType;  
} 

and called from another function like follows:

[self setKeyboardType: (UIKeyboardType) UIKeyboardTypeEmailAddress];

This code is not working for any of the input boxes. Plus, how can i put the condition for that particular input box to have this type. input box ID is available. thanks.

share|improve this question

2 Answers

up vote 0 down vote accepted

If all you want to do is show a different keyboard set for your inputs, check HTML5 input types.

For example, when you set the type of your input to email, iPhone puts an @ key to keyboard, so it's a bit easier to type.

<input type="email" />

or when you set it to number, it shows the numeric keyboard

<input type="number" />

HTML5 input types are supported in other platforms as well.

share|improve this answer

Have you tried using the 'email' type on the html text field - <input type="email" /> ?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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