views:

243

answers:

2

I have a web view which displays a simple login form, containing username and password fields.

However when the user clicks in one of the text fields, although the cursor appears in the text field, the on-screen keyboard does not appear.

I've tried registering for UIKeyboardWillShowNotifications notifications and I see this notification arrive, however the keyboard doesn't actually appear on the screen. I've also tried sending the web view to the back of the view hierarchy and changing it's frame so it doesn't occupy the whole screen. However neither of these measures have solved the problem.

What would people recommend trying next?

A: 

Eventually I solved this problem by creating a new Xcode project and transferring all the source files across - so it looks like it was some kind of build or project configuration problem.

Andrew Ebling
A: 

Which files did you transfer to your new project. Which should I not transfer. I'm having this same issue. Thanks.

Arik
All of them (i.e. all .m .h .plist .png etc) and reconfigured the project from scratch.
Andrew Ebling