ios - How to get all the groups from photo library, like native? -
i have create custom photo library native , working fine, not able videos,favorites,panoramas (group), how can same native photo library ? have use alassetsgroupall
groups library , show in tableview native. please me how videos,favorites,panoramas (group)?
thanks in advance.
you should enumerate groups available. i.e
alassetslibrarygroupsenumerationresultsblock resultsblock = ^(alassetsgroup *group, bool *stop) { if (group){ } }; alassetslibraryaccessfailureblock failureblock = ^(nserror *error){ }; nsuinteger type = alassetsgrouplibrary | alassetsgroupalbum | alassetsgroupevent | alassetsgroupfaces | alassetsgroupphotostream; [self.assetslibrary enumerategroupswithtypes:type usingblock:resultsblock failureblock:failureblock];
Comments
Post a Comment