文章出處

在iOS中,我們調用攝像頭和選擇相冊中的資源,我們可以使用:UIImagePickerController類來完成。
 
當然,我們也可以不使用UI的形式來訪問iOS設備的相冊資源。
那就是使用:ALAssetsLibrary
 
一、ALAssetsLibrary是什么
 
可以說,是一個橋梁把。連接了我們應用程序和相冊之間的訪問。
ALAssetsLibrary提供了我們對iOS設備中的相片、視頻的訪問。
 
ALAssetsLibrary被封裝在 框架中。所以,我們在使用時,需要引入該框架。
 
需添加AssetsLibrary.framework 
然后引入 

#import <AssetsLibrary/ALAsset.h>

#import <AssetsLibrary/ALAssetsLibrary.h>

#import <AssetsLibrary/ALAssetsGroup.h>

#import <AssetsLibrary/ALAssetRepresentation.h>

 

self.assetsLibrary = [[ALAssetsLibrary alloc] init];
    dispatch_queue_t dispatchQueue =dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
    dispatch_async(dispatchQueue, ^(void) {
        // 遍歷所有相冊
        [self.assetsLibrary enumerateGroupsWithTypes:ALAssetsGroupAll
                                          usingBlock:^(ALAssetsGroup *group, BOOL *stop) {
                                              // 遍歷每個相冊中的項ALAsset
                                              [group enumerateAssetsUsingBlock:^(ALAsset *result, NSUInteger index,BOOL *stop) {
                                                   
                                                  __block BOOL foundThePhoto = NO;
                                                  if (foundThePhoto){
                                                      *stop = YES;
                                                  }
                                                  // ALAsset的類型
                                                  NSString *assetType = [result valueForProperty:ALAssetPropertyType];
                                                  if ([assetType isEqualToString:ALAssetTypePhoto]){
                                                      foundThePhoto = YES;
                                                      *stop = YES;
                                                      ALAssetRepresentation *assetRepresentation =[result defaultRepresentation];
                                                      CGFloat imageScale = [assetRepresentation scale];
                                                      UIImageOrientation imageOrientation = (UIImageOrientation)[assetRepresentation orientation];
                                                      dispatch_async(dispatch_get_main_queue(), ^(void) {
                                                          CGImageRef imageReference = [assetRepresentation fullResolutionImage];
                                                          // 對找到的圖片進行操作
                                                          UIImage *image =[[UIImage alloc] initWithCGImage:imageReference scale:imageScale orientation:imageOrientation];
                                                          if (image != nil){
                                                              //獲取到第一張圖片
                                                          } else {
                                                              NSLog(@"Failed to create the image.");
                                                          } });
                                                  }
                                              }];
                                          }
                                        failureBlock:^(NSError *error) {
                                            NSLog(@"Failed to enumerate the asset groups.");
                                        }];
         
    });

 

 
相關文章:
http://blog.csdn.net/kingsley_cxz/article/details/9165951

文章列表


不含病毒。www.avast.com
arrow
arrow
    全站熱搜
    創作者介紹
    創作者 大師兄 的頭像
    大師兄

    IT工程師數位筆記本

    大師兄 發表在 痞客邦 留言(0) 人氣()