Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Accessing photos from a specific album from photolibrary

Tags:

ios

iphone

ios4

While using uiimagepicker, is there any way of specifying which user created album the images should be picked from?Ill explain.Suppose there are two albums created by the user in the ipad.Let them be named 'friends' and 'students'.Is there any way of specifying which one of these albums the photos should be accessed from ?or How can i know the name of the album the picked image belongs to?

can it be done via alsset methods?What i want to do is access photos from a particular synched album using their names.Is it even possible.I mean does iphone use its own naming conventions or are the original image names retained?

like image 269
humblePilgrim Avatar asked May 02 '11 09:05

humblePilgrim


People also ask

How do I access photo albums on my Mac?

Albums appear in the sidebar; select one to see its contents in the window to the right. To see the albums in a folder (such as the My Albums folder), click the arrow next to the folder. Or, simply select the folder name, and the albums in it appear in the window to the right. Double-click an album to open it.

What is the difference between an album and a folder in photos?

Folders and albums are fantastic for creating an immaculately organized photo gallery. Albums allow you to add pictures to categorize group them together, while creating a folder will allow you to store multiple albums in one place. You can choose to keep your photos organized however you want to.

How do I manage photo albums on iPhone?

Manage your albums To rearrange your albums: Go to Albums, tap See All, then tap Edit. Touch and hold an album and drag it anywhere you want. Tap Done.

Can I store photos in albums and remove them from the main library iPhone?

No, that is not possible. The standard albums are not storing photos. They are only referencing them in the library. If you delete a photo from the library , it will be removed from all albums that are using the photo.


1 Answers

You should use ALAssetsLibrary and make your own custom picker. You can find a custom image picker using ALAssetsLibrary at https://github.com/B-Sides/ELCImagePickerController

When the user selects an image from the custom picker, you are returned with the ALAsset object from which you can get the required image, album it belongs to etc. You can save that and modify the custom picker to navigate to a selected album.

like image 85
Ravi Avatar answered Oct 04 '22 00:10

Ravi