如何使用AFNetworking在UIImageView中显示base64图像?

时间:2013-07-18 09:25:30

标签: ios ios6 uiimageview uiimage afnetworking

我正在使用下面的代码

在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"]]

怎么做

感谢

1 个答案:

答案 0 :(得分:0)

我不确定我明白什么不适合你,但你不应该做这样的事情:

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

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