I want to create a view that consists solely of a UITextView. When the view is first shown, by default, I\'d like the keyboard to be visible and ready for text
To automatically show the keyboard, to the following:
override func viewDidLoad() {
super.viewDidLoad()
// show keyboard
textView.becomeFirstResponder()
}
Notes
UITextView and UITextFieldtextView.resignFirstResponder()