Reputation: 2596
As i saw this in "Viber" application. There is media sharing button which opens all the albums as shown in photos native application. Can we do this ? I found UIImagePickerController cannot shows both simultaneously. How show both photo gallery and video gallery simultaneously ?
Upvotes: 0
Views: 478
Reputation: 3451
You're right about UIImagePickerController
here great guide, and github project for picking media.
If you want to share your media here's some cool examples:
Check this tutorial on how to share pictures via email.
If you want to share via mail -
First of all you have to Create NSData object from your PNG/JPEG image data and then implement the method: Send addAttachmentData:mimeType:filename:
to your MFMailComposeViewController
instance.
Also i think the best thing to use in your case to share stuff like text, pictures etc is Sharekit.
Upvotes: 1