Link for previous question: UITextField text jumps
Briefly: I have ViewController with 2 UITextField elements. When loginField is firstResp
ViewController
UITextField
Here is simple code you need to write for stop jumping of text. This is work for me.
func textFieldDidEndEditing(_ textField: UITextField) { // Workaround for the jumping text bug. textField.resignFirstResponder() textField.layoutIfNeeded() }