我想通过我的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的代码..能帮帮我吗?
答案 0 :(得分:0)
您可以使用Phonegap小组的FacebookConnect插件授权。
使用也可以使用Dave johnson的plugin,这也支持iOS和Android平台。
答案 1 :(得分:0)