I gave the answer shown below to a question about a bug in the keyboard of an iOS UIWebView. I had put a link to my blog post containing a couple of other common answers to the question, as this question has had different answers for different users. I would not have done this if I hadn't seen this before on SO, and if there had been something against it in the FAQ (note that this answer is not simply a link, but a complete answer including a link which the user doesn't have to visit to implement the fix).
I created this new answer because it is fundamentally different from any other answer, and because discovering it was such a pain that I thought others would appreciate the feedback on old articles that I had searched when I was trying to solve the error. I think it's articulate and concise enough. My response was deleted and my account was banned from posting. It's not important to me that I link to my article. I would still like to post my answer, and I don't see what's so bad about it.
The solution mentioned here didn't work for me. I had a persistent error that seemed to be an issue with iOS, or at least my build settings. I came up with a workaround. If you're still stuck like I was, try this (the link was here). I think it will work.
Put this into your web view's delegate:
- (BOOL)webView:(UIWebView *)v shouldStartLoadWithRequest:(NSURLRequest *)rnavigationType:(UIWebViewNavigationType)t {
NSString *requestString = [[r URL] absoluteString]; if ([requestString hasPrefix: @"yourURLPrefix:"] ) { if ([requestString hasPrefix: @"yourURLPrefix:keyboardFix"] ) { //if your webview is a subview of a UIWindow, as is often the case, use self.superview as yourWindow [yourWindow makeKeyAndVisible]; } }Put this into the onFocus event handler of any input element you need to reliably bring up the keyboard:
document.location = "yourURLPrefix:keyboardFix";Or, if you want to add the event handler programmatically from the native code
[myWebView stringByEvaluatingJavaScriptFromString: @"document.getElementById('yourTextInput').onfocus = function(e) {document.location = 'yourURLPrefix:keyboardFix';};"];