Search code examples
iphoneiosuitextfield

UITextField start text from top when height is increased


I have increased the height of UITextField. The problem is that although height is increased, the text still starts from center of textFeild. But I want text to appear from top of UITextField.


Solution

  • you can use this...

    textField.contentVerticalAlignment = UIControlContentVerticalAlignmentTop;