The keyboard does not appear when uitextfield is pressed

  • I introduced the navigation controller (Nav1) as a modal view controller from rootViewController
  • Then, from Nav1, I created another navigation controller (Nav2) and introduced it as a modal controller.
  • In nav2, when I click on a table cell, it pushes a view controller containing a UITextField

Now the problem is that when I click on UITextField it does not show iphone keyboard

Actually, I am trying to do something like an alarm shortcut, as in the iphone clock application.

+3
source share
3 answers

Just make sure you set the delegate to the text box ...

[textField setDelegate:self];
+1

?

tabbarcontroller, . google

0

check if "ReloadData" fails before activating UITextField

0
source

Source: https://habr.com/ru/post/1730729/


All Articles