1、初始化webview, 同时加载本地html代码片段,并且设置 UIWebViewDelegate
[webView loadHTMLString:@"Hello World <script type=\"text/javascript\">function showHello(){return \"hello World 123\"}</script>" baseURL:nil];
webView.delegate = self;
-(void)webViewDidFinishLoad:(UIWebView *)webView {
UIWebView *webview = [[approvalCopiesView subviews] objectAtIndex:0];
NSLog(@"------%@", [webview stringByEvaluatingJavaScriptFromString:@"showHello();"]);
}