ios-擷取系統相簿裡邊的所有照片

來源:互聯網
上載者:User

#import<AssetsLibrary/AssetsLibrary.h>

-(void)getImgs{

    

   dispatch_async(dispatch_get_main_queue(), ^{

       NSAutoreleasePool *pool = [[NSAutoreleasePoolalloc]
init];

        

        

       ALAssetsLibraryAccessFailureBlock failureblock = ^(NSError *myerror){

           
NSLog(@"相簿訪問失敗 =%@", [myerrorlocalizedDescription]);

           
if ([myerror.localizedDescription
rangeOfString:@"Global denied access"].location!=NSNotFound) {

                  NSLog(@"無法訪問相簿.請在'設定->定位服務'設定為開啟狀態.");

            }else{

                NSLog(@"相簿訪問失敗.");

            }

        };

        

       
ALAssetsGroupEnumerationResultsBlock groupEnumerAtion = ^(ALAsset *result,NSUInteger index,
BOOL *stop){

           
if (result!=NULL) {

        

               
if ([[result valueForProperty:ALAssetPropertyType]isEqualToString:ALAssetTypePhoto]) {

                    

                   
NSString *urlstr=[NSString
stringWithFormat:@"%@",result.defaultRepresentation.url];//圖片的url

/*result.defaultRepresentation.fullScreenImage//圖片的大圖

result.thumbnail                            //圖片的縮圖小圖

//                    NSRange range1=[urlstr rangeOfString:@"id="];

//                    NSString *resultName=[urlstr substringFromIndex:range1.location+3];

//                    resultName=[resultName stringByReplacingOccurrencesOfString:@"&ext=" withString:@"."];//格式demo:123456.png

*/

                    

                  [self._dataArray addObject:urlstr];

                }

            }

           

        };

       ALAssetsLibraryGroupsEnumerationResultsBlock

        libraryGroupsEnumeration = ^(ALAssetsGroup* group,BOOL* stop){

            

           
if (group == nil) 

            {

                

            }

            

           
if (group!=nil) {

               
NSString *g=[NSString
stringWithFormat:@"%@",group];//擷取相簿的組

               NSLog(@"gg:%@",g);//gg:ALAssetsGroup
- Name:Camera Roll, Type:Saved Photos, Assets count:71

               
NSString *g1=[g substringFromIndex:16 ] ;

               
NSArray *arr=[NSArray arrayWithArray:[g1componentsSeparatedByString:@","]];

               
NSString *g2=[[arr objectAtIndex:0]substringFromIndex:5];

               
if ([g2 isEqualToString:@"Camera Roll"]) {

                    g2=@"相機菲林";

                }

               
NSString *groupName=g2;//組的name

                

                [groupenumerateAssetsUsingBlock:groupEnumerAtion];

            }

            

        };

        

       ALAssetsLibrary* library = [[ALAssetsLibraryalloc]
init];

        [libraryenumerateGroupsWithTypes:ALAssetsGroupAll

                              usingBlock:libraryGroupsEnumeration 

                            failureBlock:failureblock];

        [library
release];      

        [pool
release];

    });  

    

}

//------------------------根據圖片的url反取圖片-----

 ALAssetsLibrary *assetLibrary=[[ALAssetsLibraryalloc]
init]; 

NSURL *url=[NSURLURLWithString:urlStr];

[assetLibrary
assetForURL:url resultBlock:^(ALAsset *asset)  {

               
UIImage *image=[UIImage
imageWithCGImage:asset.thumbnail];

                cellImageView.image=image;

           

                }failureBlock:^(NSError *error) {

                   
NSLog(@"error=%@",error);

            }

             ];

//---------------------

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.