phonegap アプリケーションからソーシャル ネットワークにメッセージを共有したいと考えています。そのために、iphone と 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のコードを見つけることができません..私を助けてもらえますか?