UIWebViewに.js(javaScript)ファイルをロードしたいのは次のような1つの関数だけではありません
[webView stringByEvaluatingJavaScriptFromString:@""];
UIWebViewに.js(javaScript)ファイルをロードしたいのは次のような1つの関数だけではありません
[webView stringByEvaluatingJavaScriptFromString:@""];
NSString *javaScript=[NSString stringWithContentsOfFile:[[NSBundle mainBundle] pathForResource:@"javascript" ofType:@"js"] encoding:NSUTF8StringEncoding error:nil];
[webView stringByEvaluatingJavaScriptFromString:javaScript];
[2] http://iphoneincubator.com/blog/windows-views/how-to-inject-javascript-functions-into-a-uiwebview