2016-06-13 16 views

답변

0
ALAssetsLibrary *al = [[ALAssetsLibrary alloc] init]; 


[al enumerateGroupsWithTypes:ALAssetsGroupAll 

    usingBlock:^(ALAssetsGroup *group, BOOL *stop) 
    { 
     [group enumerateAssetsUsingBlock:^(ALAsset *asset, NSUInteger index, BOOL *stop) 
     { 
      if (asset) 
      {     
       .. do something with the asset 
      } 
     } 
     ]; 
    } 

    failureBlock:^(NSError *error) 
    { 
     // User did not allow access to library 
     .. handle error 
    } 
]; 
+0

, 답장을 보내 주셔서 감사합니다 참조 나는 그 사진을 얻는다? 첫 번째 자산? 아니면 마지막으로 자산을 얻을 수 있습니까? 만약에, 어떻게? – lme

+0

imagepicker를 사용하여 사진을 찍고 있습니까? –

+0

이 방법을 추가 했습니까? - (void) imagePickerController : (UIImagePickerController *) 피커 didFinishPickingMediaWithInfo : (NSDictionary *) info –