JavaScript を UIWebview にロードしようとしています。これが JavaScript コードです。
<script type=\"text/javascript\">
window.external =
{
'Notify': function(s) { document.location = 'acs://settoken?token=' + s; },
'notify': function(s) { document.location = 'acs://settoken?token=' + s; }
};
</script>
- (void) webViewDidFinishLoad:(UIWebView *)webView
{
//Here how to call the above javascript
[webView stringByEvaluatingJavaScriptFromString:@"";
}