I placed a UITextField inside a UIView and set textField.autoresizingMask = [.flexibleWidth, .flexibleHeight]
(no autoLayout used). I also attached a UISlider to change the frame of UIView. As I have set autoresizingMask with UIView, UITextField size increase as well as. But issue is text is bounces heavily when I change UIView's bounds. I tried to look into this SO answer and called layoutIfNeeded()
for bounds update call but it doesn't stop bouncing.
EDIT
I have implemented textField without being on subView. Even I did not set autoresizingMask this time. But still textField is bouncing on. Here is Demo code snippet and also Demo project