1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

【Swift】TextFieldが空欄だったらボタン無効化

Posted at

よくある「テキストを入力→追加ボタンを押す→データの追加」という動作。
アプリの誤操作を防止するために、つけたくなったのが
「TextFieldが空欄なら追加ボタンが押せない」という機能。作り方を残しておきます。

実装方法

TextFieldと追加ボタン作成

@IBOutlet weak var newContentsTextField: UITextField!
@IBOutlet weak var addButton: UIButton!

TextFieldの「Editing Changed」接続

StoryboardのTextFieldを右クリック
オブジェクトが変更されたときに呼ばれる「Editing Changed」をViewControllerに接続

image.png

@IBAction func textEditingDidChanged(_ sender: Any) {

}

https://developer.apple.com/documentation/uikit/uicontrol/event/1618241-editingchanged

TextFieldの変更処理を追加

TextFieldが空欄の時「ボタンの無効化」「半透明」にします。

 private func updateTextFieldButton() {
  if newContentsTextField.text == "" {
      addButton.isEnabled = false
      addButton.layer.opacity = 0.4
  } else {
      addButton.isEnabled = true
      addButton.layer.opacity = 1
  }
}

viewDidLoadとEditing Changedに追加

画面読み込み時とTextFieldの変更時に空欄かどうか判定

@IBAction func textEditingDidChanged(_ sender: Any) {
   updateTextFieldButton()
}

override func viewDidLoad() {
    super.viewDidLoad()
    updateTextFieldButton()
}

全体のコード

@IBOutlet weak var newContentsTextField: UITextField!
@IBOutlet weak var addButton: UIButton!

@IBAction func textEditingDidChanged(_ sender: Any) {
    updateTextFieldButton()
}

override func viewDidLoad() {
    super.viewDidLoad()
    updateTextFieldButton()
}
    
private func updateTextFieldButton() {
  if newContentsTextField.text == "" {
      addButton.isEnabled = false
      addButton.layer.opacity = 0.4
  } else {
      addButton.isEnabled = true
      addButton.layer.opacity = 1
  }
}
1
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?