加载所有照片

iOS 9 后用:PHPhotoLibrary

 ALAssetsLibrary *library = [[ALAssetsLibrary alloc]init];
    
    [library enumerateGroupsWithTypes:ALAssetsGroupSavedPhotos usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
        
        [group enumerateAssetsUsingBlock:^(ALAsset *result, NSUInteger index, BOOL *stop) {
            
            NSLog(@"%@",result);
            CGImageRef image = result.thumbnail;
        }];
    } failureBlock:nil];

 

posted @ 2015-07-15 20:03  Emyin  阅读(118)  评论(0编辑  收藏  举报