I\'m doing a project to take images from iphone photo library or in other way from camera roll. I have done that without any problem. But i need to retrieve the name from th
If you need the full path, just use this:
ALAsset* asset; // previously assigned NSDictionary* pathInfo = [asset valueForProperty:ALAssetPropertyURLs];
This will leave the full URL of the image on your device as the Value member of the pathInfo object.