0

It takes 2-3 seconds for the keyboard to pop up after I touch my UITextField.

I tried :

- (BOOL)application:(UIApplication *)application didFinishLaunchingWithOptions:(NSDictionary *)launchOptions {
  // Preloads keyboard so there's no lag on initial keyboard appearance.
  UITextField *lagFreeField = [[UITextField alloc] init];
  [self.window addSubview:lagFreeField];
  [lagFreeField becomeFirstResponder];
  [lagFreeField resignFirstResponder];
  [lagFreeField removeFromSuperview];
}

which seems to be working when i searched SO.But this isn't working for me. Any help would be greatly appreciated.

Community
  • 1
  • 1
Jas
  • 3,207
  • 2
  • 15
  • 45

0 Answers0