web-dev-qa-db-ja.com

テキストフィールドの高さを変更するには?

IBのテキストフィールドの高さを変更する方法はありますか?

そうでない場合、コードでそれを行う適切な方法は何ですか?

27
4thSpace

attribute inspectorをクリックしてtextFieldに変更し、Borderスタイルを2つ目と高さを変更することができます。

enter image description here

63
Rashwan L

ステップ1:Attribute Inspectorをクリックし、そうでないBorder Stylesを選択します丸いもの。

borderstyle

ステップ2:次にSize Inspectorに移動し、サイズを変更しますTextField

change the height of the textfield

ステップ3:TextFieldに@IBOutletを作成し、viewWillAppear()またはviewDidAppear()内に以下のコードを追加します。

userTextField.borderStyle = UITextBorderStyle.roundedRect

Swift 4.2

userTextField.borderStyle = UITextField.BorderStyle.roundedRect

これで、丸みのあるクールなテキストフィールドが得られます。

18
Vinoth Vino

TextFieldのattribute inspectorでは、最初、2番目、3番目の境界線スタイルを選択して高さを増やすことができます。

1