Accessing the ALAssetsGroup information for an ALAsset object

325 Views Asked by At

It's common to enumerate the ALAssetsGroup to get the ALAsset objects, like this way:

[assetGroup enumerateAssetsUsingBlock:^(ALAsset *result, NSUInteger index, BOOL *stop) {
    NSLog(@"%@",result);              
}];

But I have a special use case, which is accessing the ALAssetsGroup information for an specific ALAsset object. How to do this by avoid enumerating the whole library? Thanks!

0

There are 0 best solutions below