У меня есть WebView, и я хочу вызвать представление в Objective-C из JavaScript. Кто-нибудь знает, как я могу это сделать?
У меня этот код в моем ViewController:
- (BOOL)webView:(UIWebView *)webView2 
 shouldStartLoadWithRequest:(NSURLRequest *)request 
 navigationType:(UIWebViewNavigationType)navigationType {
 NSString *requestString = [[request URL] absoluteString];
 NSArray *components = [requestString componentsSeparatedByString:@":"];
 if ([components count] > 1 && 
  [(NSString *)[components objectAtIndex:0] isEqualToString:@"myapp"]) {
  if([(NSString *)[components objectAtIndex:1] isEqualToString:@"myfunction"]) 
  {
   NSLog([components objectAtIndex:2]); [[Airship shared] displayStoreFront]; //<- This is the code to open the Store
   NSLog([components objectAtIndex:3]); // param2
   // Call your method in Objective-C method using the above...
  }
  return NO;
 }
 return YES; // Return YES to make sure regular navigation works as expected.
}
И в Javascript:
function store(event)
{
    document.location = "myapp:" + "myfunction:" + param1 + ":" + param2;
}
Но ничего не происходит.
