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
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]; }