我尝试使用imageSlideShow库和加载图片,我使用SdwebImage库,但我不知道如何一起使用
在How to use
部分中 imageSlideShow,说您可以使用AlamofireImage
,sdwebImage
,kingFisher
库并举例说明此代码:
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([])
答案 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)