我从API获取URL图像。我已将UR图像存储到字符串中。这是我的问题,我想把它显示到旋转木马。我不知道该怎么做。以下是我尝试过的代码。
for(int i=0;i<hotelIMAges.count;i++ )
{
NSDictionary *images=[hotelIMAges objectAtIndex:i];
NSString *Images= [images objectForKey:@"Imagepath"];
[ImageARRAy addObject:Images];
} //Here I have stored all the images into string..(https://***.jpg)
Carousel *carousel = [[Carousel alloc] initWithFrame:CGRectMake(0, 0,300, 262)];
[carousel setImages:ImagesARRAy];
答案 0 :(得分:0)
您只需处理异步,因为您当前的方法可以是同步请求,并阻止主线程直到下载完成。
考虑使用SDWebImage
及其添加的UIImageView
扩展名来管理图片下载和显示。它还支持占位符图像,您可以提供该图像以指示下载正在进行中。
如果您使用任何第三方轮播检查异步方法来显示图像。我相信setImages
:方法必须是存储在应用程序内部的图像。如果您有任何疑问,请告诉我。
---- ---- EDITED
您的Carousel正在使用同步方法来显示阻塞主线程的内容。 您可以将SDWebImage用于您的目的。 为此,您需要下载SDWebImage以异步下载图像。您可以从下面的链接下载SDWebImage。 您可以在Carousel.h类中使用它作为
#import <SDWebImage/UIImageView+WebCache.h>
使用以下行修改您的设置方法。
[imageView sd_setImageWithURL:[NSURL URLWithString:self.images[i]]
placeholderImage:[UIImage imageNamed:@"placeholder.png"]];
有关详细信息,请参阅SDwebpage的github页面。如果您有任何疑问,请告诉我。 https://github.com/rs/SDWebImage#using-asynchronous-image-downloader-independently