分享到社交iphone本机代码

时间:2012-12-01 11:56:42

标签: iphone cordova share

我想通过我的phonegap应用程序与社交网络分享消息。为此我创建了iphone和android的插件。

我找到了android的代码:

String message = "Text I wan't to share."
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("text/plain");
share.putExtra(Intent.EXTRA_TEXT, message);

startActivity(Intent.createChooser(share, "Title of the dialog the system will open"));

但我无法找到iphone的代码..能帮帮我吗?

2 个答案:

答案 0 :(得分:0)

您可以使用Phonegap小组的FacebookConnect插件授权。

  • 此插件提供了一种使用Facebook Graph API的简单方法 科尔多瓦。
  • 此插件是使用ARC为Cordova> = v2.1.0构建的。 iOS和& Android支持相同的javascript界面​​。

使用也可以使用Dave johnson的plugin,这也支持iOS和Android平台。

答案 1 :(得分:0)

共享Intent是Android SDK的一部分,而不是iOS! iOS中没有这样的东西,您只需要分别整合每个社交网络。

您可能需要查看thisthis的facebook和Twitter集成,因为它们现在是iOS的一部分(Twitter已集成到iOS 5,iOS 6中的Facebook)。