In most iPhone apps, there\'s a quite a bit of delay the first time that the keyboard is presented (presumably creating the keyboard takes quite a bit of o
making the textfield the firstResponder and then resigning it in the viewdidload.. this seems to work with no lag when the keyboard is loaded again...
- (void)viewDidLoad
{
[super viewDidLoad];
[textField becomeFirstResponder];
[textField resignFirstResponder];
// Do any additional setup after loading the view, typically from a nib.
}