Embedding WebView in UIView - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T03:26:42Zhttp://stackoverflow.com/feeds/question/1328026http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1328026/embedding-webview-in-uiview0Embedding WebView in UIViewNeerajhttp://stackoverflow.com/users/1575282009-08-25T12:40:45Z2009-12-24T13:00:01Z
<p>Hi All,
I'm trying to embed a WebView inside a UIView/TableView so as to implement the combobox. The WebView will have the select element , after the selection the value should be returned to the main UIView. I'm not sure how to implement this.</p>
<p>In the ViewDidFinishLoad, I try to run the JavaScript like this:</p>
<pre><code>- (void)webViewDidFinishLoad:(UIWebView *)aWebView {<pre>
if (initialLoad) {
initialLoad = NO;//NO initially
}
NSString *scriptCode = @"var selectmenu=document.getElementById(\"mymenu\"); selectmenu.onchange= this.options[this.selectedIndex].value; ";
NSString *translatable = [webLoader stringByEvaluatingJavaScriptFromString:scriptCode];
NSLog(@"isTranslatable: %@", translatable);
}
</code></pre>
<p>This is not working...! Could someone please tell me how to do it....?
Thanks</p>
http://stackoverflow.com/questions/1328026/embedding-webview-in-uiview/1371592#13715920Answer by Jonathan Sterling for Embedding WebView in UIViewJonathan Sterlinghttp://stackoverflow.com/users/1253612009-09-03T05:45:12Z2009-09-03T05:45:12Z<p>I'm not exactly sure what you are trying to do, but embedding a web view in a table view to implement a combobox sounds like "ur doin it rong"…</p>