如何使用带有sdwebimage库的ImageSlideshow库

时间:2017-06-09 07:31:42

标签: ios swift slideshow sdwebimage

我尝试使用imageSlideShow库和加载图片,我使用SdwebImage库,但我不知道如何一起使用

How to use部分中

imageSlideShow,说您可以使用AlamofireImagesdwebImagekingFisher库并举例说明此代码:



slideshow.setImageInputs([
  ImageSource(image: UIImage(named: "myImage"))!,
  ImageSource(image: UIImage(named: "myImage2"))!,
  AlamofireSource(urlString: "https://images.unsplash.com/photo-1432679963831-2dab49187847?w=1080"),
  KingfisherSource(urlString: "https://images.unsplash.com/photo-1432679963831-2dab49187847?w=1080"),
  ParseSource(file: PFFile(name:"image.jpg", data:data))
])




但不要为SdWebImage解释或示例。

我的问题是如何将SdWebImage用于slideshow.setImageInputs([])

1 个答案:

答案 0 :(得分:2)

首先,将这个添加到您的Pod文件中:

pod "ImageSlideshow/SDWebImage"

运行pod install

现在,您可以为幻灯片创建一个ImageSource数组,如下所示:

let ea = [SDWebImageSource(url: URL(string: "http://mutfakustam.com/resimler/tarifler/et-tavuk-yemekleri/biberli-et-kavurmasi-136-1.jpg")!)]

并设置幻灯片的图像输入:

slideshow.setImageInputs(ea)