Why is UITextField animating on resignFirstResponder?
Since iOS 8, UITextFields in a form behave very strangely. If I click an another text field or press Tab on the keyboard, the entered text animates upwards then reappears quickly. It happens every time after the view did loaded, and every now and then afterwards. It looks like this: My code looks like this: #pragma mark - <UITextFieldDelegate> - (BOOL)textFieldShouldReturn:(UITextField *)textField { if (textField == self.passwordTextField) { [self loginButtonClicked:nil]; } else if (textField == self.emailTextField) { [self.passwordTextField becomeFirstResponder]; } return YES; } EDIT: It