0

出于某种原因,我无法让我的 base 64 编码图像显示在 aUIImageViewUICollectionView

这是我的代码:

-(UICollectionViewCell *)collectionView:(UICollectionView *)collectionView cellForItemAtIndexPath:(NSIndexPath *)indexPath{
    static NSString *identifier = @"task_cell";

    UICollectionViewCell *cell = [collectionView dequeueReusableCellWithReuseIdentifier:identifier forIndexPath:indexPath];

    NSDictionary* json = [dataSource objectAtIndex:indexPath.row];

    [cell setBackgroundColor:[UIColor whiteColor]];

    UIImageView *image = (UIImageView *)[cell viewWithTag:100];
    UILabel *text = (UILabel *)[cell viewWithTag:101];

    NSString *ext = [[json objectForKey:@"image"] pathExtension];
    NSString *final = [NSString stringWithFormat:@"data:image/%@;base64,%@", ext, [json objectForKey:@"b64img"]];
    NSURL *url = [NSURL URLWithString:final];
    NSData *imageData = [NSData dataWithContentsOfURL:url];
    [image setImage:[UIImage imageWithData:imageData]];

    text.text = [json objectForKey:@"title"];

    return cell;
}

调试日志:

Printing description of final:
data:image/jpg;base64,/9j/4AAQSkZJRgABAQEASABIAAD/......(goes on for a while)

url = nil

imageData is nil

我确实看到了UILabel变化。

那么,我应该尝试什么。

4

2 回答 2

0

这可能是您如何构建图像路径的问题。这看起来很时髦:

NSString *final = [NSString stringWithFormat:@"data:image/%@;base64,%@", ext, [json objectForKey:@"b64img"]];

请在设置图像时发布 NSLog 值 finalurl以及是否imageData为 nil。

于 2013-07-25T19:27:18.830 回答
0

我必须执行以下操作来修复它..

  1. 更改网址的代码:

    NSURL *url = [NSURL URLWithString:[NSString URLEncodeString:final]];

  2. 将函数 URLEncodeString 添加到 NSString。我使用来自NSURL URLWithString:myString 的代码返回 Nil?. 它就像一个魅力。

并且 presto ......它的工作原理。

于 2013-07-25T23:19:35.330 回答