我想在iPhone中与已安装的应用共享图像和文字,请帮助我成为iPhone开发的新手。我不知道该怎么做。
我已经在Android下面使用以下代码完成了。
Uri imageUri = Uri.parse(sharePath);
Intent intent = new Intent(Intent.ACTION_SEND);
intent.setType("image/png");
intent.putExtra(Intent.EXTRA_TEXT, s);
intent.putExtra(Intent.EXTRA_STREAM, imageUri);
startActivity(Intent.createChooser(intent, "Share"));
但我不知道如何在iPhone上做。