Reputation: 272
i want to Share Image and Text with Installed app in iPhone please help me i'm new in iPhone development. i don't know how to do this.
I Already complete in android with Below Code.
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"));
But i don't know how to do in iPhone.
Upvotes: 0
Views: 1511