【Xcode/Swift】TextFieldで入力が完了したらキーボードを閉じる

Contents 非表示

実装

Storyboard

コード

import UIKit

class ViewController: UIViewController {

    @IBOutlet private weak var textField: UITextField!

    override func viewDidLoad() {
        super.viewDidLoad()
        textField.delegate = self
    }

    override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
        self.view.endEditing(true)
    }

}

extension ViewController: UITextFieldDelegate {
    func textFieldShouldReturn(_ textField: UITextField) -> Bool {
        textField.resignFirstResponder()
        return true
    }

}

この記事は役に立ちましたか?

はい
いいえ
貴重なフィードバックありがとうございます!