0
1

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 5 years have passed since last update.

Swift5でキーボードを閉じる方法(備忘録)

Last updated at Posted at 2019-12-25

はじめに

自分用のメモとして残します

実際のコード

Test.swift
//他の場所をタッチしてもキーボードを閉じる
    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
        self.view.endEditing(true)
    }

説明

基本的にキーボードイベントの呼び出したらそのままになってしまうので、
TextFirldタップ
   ↓
キーボード表示
   ↓
  入力
   ↓
画面のどこかをタップしてキーボード閉じる
の流れにしたのが今回の構文です。

以上。

0
1
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
0
1

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?