iOS 使用系統相冊獲取選取圖片的名稱


- (void)imagePickerController:(UIImagePickerController *)picker didFinishPickingMediaWithInfo:(NSDictionary<NSString *,id> *)info{
    
    NSString *mediaType = [info objectForKey:UIImagePickerControllerMediaType];
    //1.選擇的是圖片資源
    if ([mediaType isEqualToString:@"public.image"]) {

      if (img !=nil) {

            //獲取圖片的名字

            __block NSString* imageFileName;

            NSURL *imageURL = [info valueForKey:UIImagePickerControllerReferenceURL];

            NSLog(@"imgurl:%@",imageURL);

            __weak typeof(self) weakSelf = self;

            ALAssetsLibraryAssetForURLResultBlock resultblock = ^(ALAsset *myasset)

            {

                ALAssetRepresentation *representation = [myasset defaultRepresentation];

                imageFileName = [representation filename];

            };

            ALAssetsLibrary* assetslibrary = [[ALAssetsLibrary alloc] init];

            [assetslibrary assetForURL:imageURL

                           resultBlock:resultblock

                          failureBlock:nil];

        }

    }
}


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM