2

javascript接听电话UIWebViewDelegate

看起来像:

- (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType{      
NSDictionary *dictionary = [[[JSBridgeController alloc] init] js:request];
if (dictionary) {
    if ([dictionary[@"methodName"] isEqualToString:@"gimmeUser"]) {
        [self.delegate gimmeUserJS: dictionary];
    }
    if ([ dictionary[@"methodName"] isEqualToString:@"initMe"]) {
        [self.delegate initMeJS: dictionary];
    }
}
return YES;}

对我来说,问题出在网络端。它有几十个如JS上面代码中的请求,并异步发送它们。因此,如果我同时收到两个请求,webview 代表只能看到其中一个而忽略另一个。

我尝试使用NSOperationQueueNSURLConnection sendAsynchronousRequest没有任何成功。

如何为每个异步请求调用shouldStartLoadWithRequest委托?JS

谢谢你的帮助..

4

1 回答 1

0

解决此问题的一种方法是为您的视图生成一个唯一标识符。
然后,将其存储在字典中,并引用您的视图。然后,您的视图可以通过导航到 JS 中的 "callback:callback?id="+your_passed_id 将标识符传回。

if ( [[[inRequest URL] scheme] isEqualToString:@"callback"] ) {
    //then use the query string and parse for id 
    //in order to have individual control over callbacks
    NSString *queryString = [[inRequest URL] query];
}

有关回调模式的更多信息,请参阅: UIWebView 回调到 C/Objective-C 中的 Javascript

我知道这很复杂,但这是一个解决方案……祝你好运!

于 2013-10-24T23:07:34.827 回答