使用 UIWebView 调用 Javascript

IT技术 javascript uiwebview ios5 rgraph
2021-03-06 01:50:50

我正在尝试使用该函数在 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 页面。

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

2个回答

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

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

我试图这样做,但仍然无法正常工作..我已经更改了问题中的代码,但似乎没有任何效果..
2021-04-30 01:50:50
这是一个非常有效的问题,而不是一个愚蠢的问题..谢谢。我忘了设置委托......现在代码工作......
2021-05-08 01:50:50

再澄清一点。

.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();"];
}

您还可以从故事板分配委托,而不是在代码中进行。