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ますが、これはjavascriptが記述されているhtmlページです。

誰かがこれを手伝ってくれるといいですね。

4

2 に答える 2

68

シンプル:ページが読み込まれる前に、Objective-CからJS関数を実行しようとします。

UIWebViewのデリゲートメソッド webViewDidFinishLoad:をUIViewControllerに実装し、そこで呼び出して、ページが読み込まれた[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 に答える