You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Type in any field and click the Done button. The _UITextContentView frame jumps to the left briefly before returning to its original position.
This was introduced in build 1.2.4 by adding [self layoutIfNeeded] to -TPKeyboardAvoiding_keyboardWillShow: in commit f533c6c. I see that the issue this was intended to address was "Scrollview stuttering problem on content inset/offset change fixed." Removing this code fixes the text jumping when resigning first responder status, but what are the ramifications?
The text was updated successfully, but these errors were encountered:
This can be observed using the provided sample application and making the following changes to TPKAScrollViewController
-(BOOL)textFieldShouldReturn:(UITextField *)textField
to dismiss keyboardType in any field and click the Done button. The _UITextContentView frame jumps to the left briefly before returning to its original position.
![ezgif com-gif-maker](https://user-images.githubusercontent.com/10248237/114779598-4f609a00-9d44-11eb-85b3-911600f702ba.gif)
This was introduced in build 1.2.4 by adding
[self layoutIfNeeded]
to-TPKeyboardAvoiding_keyboardWillShow:
in commit f533c6c. I see that the issue this was intended to address was "Scrollview stuttering problem on content inset/offset change fixed." Removing this code fixes the text jumping when resigning first responder status, but what are the ramifications?The text was updated successfully, but these errors were encountered: