Possible Duplicate:
Keyboard not Appearing when Tapping Text Box in UIWebView
I was implementing ShareKit in my application to allow posting to twitter. However when the login field for Twitter appears, which is in a UIWebView, there is no keyboard. I have had similar issues in the past. Is there a fix/code modification I can apply to the ShareKit source to fix it so the keyboard will show? What c开发者_C百科auses it?
Most likely the keyboard is popping up behind your webview. Immediately after displaying your UIWebView, try referencing your Application Delegate as appDelegate and then call:
[appDelegate.window makeKeyAndVisible];
精彩评论