0

UIWebViewで「javascriptアラート」のメッセージを取得しようとしています。Android WebView では onJsAlert イベントで取得することは可能ですが、UIWebView にはそのような方法がありません... 方法をご存知の方がいらっしゃいましたら教えてください。

4

1 に答える 1

3

単純な方法ではできません(ASAIK)。ハックしましょう!アラート関数を再定義してみてください。js アラートのアラート メッセージを渡すことを忘れないでください。

私は検出するための特別な URL です

- (void) webViewDidFinishLoad: (UIWebView *) webView
{
    [webView stringByEvaluatingJavaScriptFromString:@"window.alert = function(message) { window.location = \"I AM A SPECIAL URL FOR detecting\"; }"];
}

アラート URL で必要なものを取得します。

- (BOOL) webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType
{
    NSURL* url = request.URL;

    // look for our custom action to come through:
    if ( [url.host isEqualToString: @"I AM A SPECIAL URL FOR detecting"] )
    {
        // parsing the url and get the message, assume there is a '='for value, if you are passing multiple value, you might need to do more
        NSString* message = [[[[url query] componentsSeparatedByString: @"="] lastObject] stringByReplacingPercentEscapesUsingEncoding:NSUTF8StringEncoding];

        // show our alert
        UIAlertView* alertView = [[UIAlertView alloc] initWithTitle: @"My Custom Title"
                                                     message: message
                                                    delegate: nil
                                           cancelButtonTitle: @"OK"
                                           otherButtonTitles: nil];

        [alertView show];

        return NO;
    }
    return YES;
}
于 2013-07-19T02:36:37.790 に答える