我使用的base64圖像顯示它在imageview的使用下面的代碼如何使用AFNetworking在UIImageView中顯示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"]]
圖像如何做到這一點
感謝
「AFNetworking」許可有什麼阻止您進行更改? –