Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I'd like to a get the name of the Saved Photos album programmatically. The value changes based on locale and whether or not the device has a camera (Camera Roll vs. Saved Photos), so hard-coding is not preferable.

I am aware that I can use AssetsLibrary to get the album name, like so:

ALAssetsLibrary *library = [[[ALAssetsLibrary alloc] init] autorelease];
[library enumerateGroupsWithTypes:ALAssetsGroupSavedPhotos 
                       usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
                                   NSLog(@"%@", [group valueForProperty:ALAssetsGroupPropertyName]);
                       }
                    failureBlock:^(NSError *error) {}];

However, doing so requires that the user authorize access to Location Services, which is unacceptable for my scenario.

Any other means of gettings this album name without requiring permissions?

share|improve this question

1 Answer

You can do that only by using AssestsLibrary, which requires that the users grants access to location services. I suggest you fill a bug report/enhancement request at radar.apple.com.

Cheers,

Hendrik

share|improve this answer

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.