0

我正在使用它在 imageview 中显示的 base64 图像,使用下面的代码

NSURL *url = [NSURL URLWithString:prodDetCompl.AttPath];
NSData *imageData = [NSData dataWithContentsOfURL:url];
UIImage *ret = [UIImage imageWithData:imageData];
cell.imageView.image = ret;

但我需要使用 AFNetworking 来加载图像不成功

[imageview setImageWithURL:[NSURL URLWithString:@""] placeholderImage:[UIImage imageNamed:@"sampleimages.jpeg"]]

怎么做

谢谢

4

1 回答 1

0

我不确定我是否了解什么对您不起作用,但是您是否应该不这样做:

NSURL *url = [NSURL URLWithString:prodDetCompl.AttPath];
[imageview setImageWithURL:url placeholderImage:[UIImage imageNamed:@"sampleimages.jpeg"]]

当然,您应该确保捆绑资源中有一个“sample images.jpeg”图像可用作占位符图像。

于 2013-07-18T09:54:05.557 回答