I am retrieving photos from the photo library using ELCImagePickerController. That works fine in the iPad simulator that shows photos from the photo library. But it does not work on iPad devices.
That shows a failure error means there are no photos, even though the device has photos.
I used the following
ALAssetsLibrary *library = [[ALAssetsLibrary alloc] init];
[library enumerateGroupsWithTypes:ALAssetsGroupAll
usingBlock:assetGroupEnumerator
failureBlock:assetGroupEnumberatorFailure];
Works for simulators, but not for iPad devices.
Can anybody reply, what's the problem there?