36

我正在尝试使用该函数在 html 页面中调用 javascript -

View did load function
{

    NSArray *paths = NSSearchPathForDirectoriesInDomains(NSDocumentDirectory, NSUserDomainMask, YES);
    NSString *documentsDirectory = [paths objectAtIndex:0];
    NSString *writablePath = [documentsDirectory stringByAppendingPathComponent:@"BasicGraph.html"];
    NSURL *urlStr = [NSURL fileURLWithPath:writablePath];

    NSFileManager *fileManager = [NSFileManager defaultManager];
    NSString *myPathInfo = [[NSBundle mainBundle] pathForResource:@"BasicGraph" ofType:@"html"];
    [fileManager copyItemAtPath:myPathInfo toPath:writablePath error:NULL];

    [graphView loadRequest:[NSURLRequest requestWithURL:urlStr]];
}

- (void) webViewDidFinishLoad:(UIWebView *)webView
{
    [graphView stringByEvaluatingJavaScriptFromString:@"methodName()"];
}

这是html页面上的javascript -

<script>
    function methodName()
      {
         // code to draw graph
      }

但是,该函数methodName()没有被调用,但在 window.onload = function () 之后一切正常..

我正在尝试将RGraphs集成到我的应用程序Basic.html中,并且是编写 javascripts 的 html 页面。

如果有人可以帮助我解决这个问题,那就太好了。

4

2 回答 2

68

很简单:你尝试在页面加载之前从 Objective-C 执行 JS 函数。

在 UIViewController 中实现UIWebView 的委托方法 webViewDidFinishLoad:,并在其中调用[graphView stringByEvaluatingJavaScriptFromString:@"methodName()"];以确保在页面加载后调用该函数。

于 2012-01-16T21:53:10.710 回答
10

再澄清一点。

.h - 实现 UIWebViewDelegate

@interface YourViewController : UIViewController <UIWebViewDelegate>
@property (weak, nonatomic) IBOutlet UIWebView *webView;
@end

.m

- (void)viewDidLoad
{
    [super viewDidLoad];

    NSString *path = @"http://www.google.com";
    [_webView loadRequest:[NSURLRequest requestWithURL:[NSURL URLWithString:path]]];
    _webView.delegate = self; //Set the webviews delegate to this
}

- (void) webViewDidFinishLoad:(UIWebView *)webView
{
    //Execute javascript method or pure javascript if needed
    [_webView stringByEvaluatingJavaScriptFromString:@"methodName();"];
}

您还可以从情节提要中分配委托,而不是在代码中进行。

于 2014-06-13T15:02:53.560 回答