我想从我的 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的代码..你能帮帮我吗?