当前位置:  开发笔记 > 编程语言 > 正文

如何从Javascript调用Objective-C?

如何解决《如何从Javascript调用Objective-C?》经验,为你挑选了2个好方法。

我有一个WebView,我想从JavaScript调用Objective-C中的一个视图.有人知道我怎么做吗?


我的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;
}

但没有任何反应.



1> Sixten Otto..:

标准的解决方法UIWebView是设置a UIWebViewDelegate并实现该方法webView:shouldStartLoadWithRequest:navigationType:.在您的JavaScript代码中,导航到一些伪造的URL,该URL会对您要传递给应用的信息进行编码,例如:

window.location = "fake://myApp/something_happened:param1:param2:param3";

在您的委托方法中,查找这些虚假URL,提取您需要的信息,采取适当的操作,然后返回NO取消导航.如果你推迟使用某种味道的performSelector任何冗长的处理,这可能是最好的.


我建议[将您在URL中传递的数据序列化为JSON](http://stackoverflow.com/a/9827105/168594),它使事情变得更加灵活.

2> talkol..:

不建议从JS调用目标c的window.location方法.问题的一个例子:如果你进行两次立即连续调用,则忽略一次(因为你不能太快地改变位置) - 自己尝试一下..

我推荐以下替代方法:

function execute(url) 
{
  var iframe = document.createElement("IFRAME");
  iframe.setAttribute("src", url);
  document.documentElement.appendChild(iframe);
  iframe.parentNode.removeChild(iframe);
  iframe = null;
}

execute重复调用该函数,并且由于每个调用都在其自己的iframe中执行,因此在快速调用时不应忽略它们.

这个家伙的功劳.

推荐阅读
ERIK又
这个屌丝很懒,什么也没留下!
DevBox开发工具箱 | 专业的在线开发工具网站    京公网安备 11010802040832号  |  京ICP备19059560号-6
Copyright © 1998 - 2020 DevBox.CN. All Rights Reserved devBox.cn 开发工具箱 版权所有