Using the below code we can share a photo through available services on android. Can anyone tell me the equivalent way to share a photo on iphone? Thanks in advance.
Intent share = new Intent(Intent.ACTION_SEND);
share.setType("image/*");
share.putExtra(Intent.EXTRA_STREAM, Uri.parse("file://"+photoPath));
startActivityForResult(Intent.createChooser(share, "Share Image"), SHARE_CONSTANT);
I think the best thing to use in your case to share stuff like text, pictures etc is Sharekit.