有没有办法从ios webview触发本机ios共享功能?

时间:2015-06-27 09:52:45

标签: ios webview uiwebview share sharing

有没有办法从ios webview触发本机ios共享功能?

在Android上我通过使用JavaScript接口并调用共享意图来做到这一点。我想知道我可以为我的ios应用程序做同样的事情。

1 个答案:

答案 0 :(得分:1)

检查名为
-webView:shouldStartLoadWithRequest:navigationType:方法  - (BOOL)webView:(UIWebView *)webView shouldStartLoadWithRequest:(NSURLRequest *)request navigationType:(UIWebViewNavigationType)navigationType { if ([[request.URL absoluteString] isEqualToString:@"share_url"]) { // Open native share dialog return NO; } return YES; } 。例如

{{1}}