How do I dismiss the keyboard by pressing the return key on device? I know how to dismiss keyboard, but not when using the UITextView:
resignFirstResponder I have tried this, but it does not work:
self.messageTextView.delegate = self And with this function:
func messageTextViewShouldReturn(textView: UITextView) -> Bool { self.messageTextView.resignFirstResponder() return true }