Skip to content

Keyboard disappear by clicking on keyboard return button

Azmal Tech edited this page Dec 15, 2016 · 1 revision

// Disappear keyboard by clicking on keyboard return-button
/* at first of all textField have to attach Outlets→delegate with view-controller
and protocal UITextFieldDelegate add with class
*/
class ViewController: UIViewController, UITextFieldDelegate{

func textFieldShouldReturn(textField: UITextField) → Bool{
textField.resignFirstResponder()
return false
}
…………
………
}

Clone this wiki locally