Skip to content

Instantly share code, notes, and snippets.

@katsuhide
Created April 3, 2016 02:42
Show Gist options
  • Save katsuhide/a2d6401c936df1c10dcde96ec72ef8a3 to your computer and use it in GitHub Desktop.
Save katsuhide/a2d6401c936df1c10dcde96ec72ef8a3 to your computer and use it in GitHub Desktop.
[iOS]フォーカスが外れたタイミングでキーボードを隠す ref: http://qiita.com/katzhide/items/8bab35e027fca49654c8
import UIKit
class ViewController: UIViewController, UITextFieldDelegate {
@IBOutlet weak var textField: UITextField!
override func touchesBegan(touches: Set<UITouch>, withEvent event: UIEvent?) {
view.endEditing(true)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment