UITextField text jumps iOS 9

前端 未结 5 1438
名媛妹妹
名媛妹妹 2020-12-19 00:35

Link for previous question: UITextField text jumps

Briefly: I have ViewController with 2 UITextField elements. When loginField is firstResp

5条回答
  •  Happy的楠姐
    2020-12-19 00:52

    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() }

提交回复
热议问题