Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I want to obtain image with metadata from photolibrary as an attachment for MFMailComposer. I did it by using the Image Picker to select the image from photolibrary.

Is there any way to obtain the image from PhotoLibrary in iphone without using the Image Picker???

share|improve this question
No. (Maybe in jailbroken iphones). By the way what is wrong with image picker. – Robin Aug 10 '11 at 7:44

2 Answers

up vote 1 down vote accepted

You can use NSAssetLibrary. Here is a basic tutorial:

http://www.fiveminutes.eu/accessing-photo-library-using-assets-library-framework-on-iphone/

share|improve this answer
Your suggestion was helpful. I used NSAssestLibrary url to reference the image saved to photo album and i was able to attach the image in MFMail Composer also... Thanks for your help... – Rajat Aug 11 '11 at 3:59
@user887372: please consider accepting this answer as correct if it helped you – xs2bush Aug 11 '11 at 5:34

first fetch the photo from photolibrary link

then send that UIImage using MFMailComposerViewController

link

share|improve this answer
Your suggestion was helpful. Thanks for your help.. – Rajat Aug 11 '11 at 4:00

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.