skip to Main Content

I’ve taken over the work on an iOS app, I’ve managed to work quite well with it thus far adding new functionality despite not being a trained iOS developer. However I’ve hit a patch where I simply cannot get the keyboard to show on screen when I tap on a UITextfield, there are areas of the app where it works but any new areas I add this simply will not work. Is there a standard bit of code that controls showing the keyboard when you tap a text field?

Need help

2

Answers


  1. Are you running on a simulator or a real device?

    Login or Signup to reply.
  2. Keyboard opens up automatically unless you forced to not open.

    You can check following, See screenshots.

    1. Enable is checked
    2. User Interaction Enable is checked
    3. If you are checking on simulator try “command + k” from keypad
    4. textFieldShouldBeginEditing delegate returns TRUE
    -(BOOL)textFieldShouldBeginEditing:(UITextField *)textField{
        return TRUE;
    }
    

    enter image description here

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search