0

I want to zoom in the text field when it is focused. I know how to move up or down the text field if keyboard appears or disappears. However, having no idea how to zoom in or zoom out the text field.

Ozgur Vatansever
  • 49,246
  • 17
  • 84
  • 119
TechChain
  • 8,404
  • 29
  • 103
  • 228

2 Answers2

0

After setting the delegate for UITextField.Try this, Hope it will help to you.

- (void)textFieldDidBeginEditing:(UITextField *)textField{
    textField.transform = CGAffineTransformMakeScale(1.5, 1.5);
}
- (void)textFieldDidEndEditing:(UITextField *)textField{
        textField.transform = CGAffineTransformMakeScale(1.0, 1.0);
}
Vishnuvardhan
  • 5,081
  • 1
  • 17
  • 33
0

You can Zoom In using contentScaleFactor . You can refere to this answer for further explaination

Community
  • 1
  • 1
Munahil
  • 2,381
  • 1
  • 14
  • 24