1

「windowScriptObject」を機能させようとしています。これは以下の私のObjective-Cコードです。

- (void)consoleLog:(NSString *)aMessage {
    NSLog(@"JSLog: %@", aMessage); }

+ (BOOL)isSelectorExcludedFromWebScript:(SEL)aSelector {
    if (aSelector == @selector(consoleLog:)) {
        return NO;
    }

    return YES; }

- (void)webView:(WebView *)sender didFinishLoadForFrame:(WebFrame *)frame {

    NSLog(@"Did finnish load...");
    scriptObject = [sender windowScriptObject];

    //obviously, this returns undefined
    NSLog(@"Object: %@",[scriptObject evaluateWebScript:@"MyApp"]);

    //set the value of MyApp
    [scriptObject setValue:self forKey:@"MyApp"];

    //this now returns the value
    NSLog(@"Object: %@",[scriptObject evaluateWebScript:@"MyApp"]);




    //this command now works from here
    [scriptObject evaluateWebScript:@"MyApp.consoleLog_('Test');"]; 
}

上記のコードは、JavaScript ( evaluateWebScript )を挿入すると機能します。

これはコンソール出力が何であるかです:

2012-12-06 08:03:05.605 BetterDesktop[8669:303] Did finnish load...
2012-12-06 08:03:05.605 BetterDesktop[8669:303] Object: undefined
2012-12-06 08:03:05.606 BetterDesktop[8669:303] Object: <WidgetsDelegate: 0x10133de60>
2012-12-06 08:03:05.607 BetterDesktop[8669:303] JSLog: Test

コマンドは機能しますが、ページを使用すると機能しません。

<html>
<head>
<script type="text/javascript">
if (typeof(MyApp) != "undefined"){
document.write('<br/><h1>hi</h1>');
MyApp.consoleLog_('Test from HTML');
}
else{

document.write('<br/><h1>Not Defined</h1>');
}

</script>
</head>
<body>
</body>
</html>

「MyApp」は未定義であると考えていますが、何か提案はありますか?

(ちなみに、このクラスには WebView は接続されておらず、単なるデリゲートです)

4

1 に答える 1

4

-webView:didClearWindowObject:forFrame: WebFrameLoadDelegate内ではなく、メソッド内からオブジェクトを WebView に挿入する必要があります-webView:didFinishLoadForFrame:。が呼び出されるまで、windowオブジェクトが正しく初期化されていることは保証されません。didClearWindowObject

于 2013-01-19T23:56:58.247 に答える