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.