Text in UITextField moves up after editing (center while editing)

前端 未结 13 1113
执念已碎
执念已碎 2020-12-01 03:14

I have a strange problem. I have an UITextField in which the user should write the amount of something, so the field is called \"amountField\". Everything looks fine, when t

13条回答
  •  无人及你
    2020-12-01 03:59

    These solution above doesn't work for me.My solution is subclass UITextField and override setText:

    - (void) setText:(NSString *)text {
        [super setText:text];
        [self layoutIfNeeded];
    }
    

提交回复
热议问题