I want the keyboard to go up as the app is starting and starting typing into the text field that I have.
In your viewDidAppear method, add the following:
viewDidAppear
txtField1.becomeFirstResponder()
For more information about UIResponder‘s becomeFirstResponder(), check the documentation.
UIResponder
becomeFirstResponder()