Embedding WebView in UIView - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T03:26:42Z http://stackoverflow.com/feeds/question/1328026 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1328026/embedding-webview-in-uiview 0 Embedding WebView in UIView Neeraj http://stackoverflow.com/users/157528 2009-08-25T12:40:45Z 2009-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 {&lt;pre&gt; 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#1371592 0 Answer by Jonathan Sterling for Embedding WebView in UIView Jonathan Sterling http://stackoverflow.com/users/125361 2009-09-03T05:45:12Z 2009-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>