I am using UITextField\'s method becomeFirstResponder to show the keyboard.
This is working in iOS 7. But in iOS 8 this method doesn\'t show the keyboard.
I had an IBOutlet connected to my UITextField. Erroneously I was initializing this in my viewDidLoad method. That is, [[textField alloc] init];. I removed this and everything worked again.