How to pass image value to the ImageSlideshow using Swift

£可爱£侵袭症+ 提交于 2019-12-08 01:20:09

问题


I am trying to get images into the ImageSlideshow with SDWebImage. I can get the images but can't format them. I hope I am making sense.

let url="https://myoscapp.com/boot/json_procuct_info.php"
    Alamofire.request(url, method: .get).validate().responseJSON { response in
        switch response.result {
        case .success(let value):
          let json = JSON(value)               
          let   imageslider=json[0]["products_gallery"].array
          if json[0]["products_gallery"].array != nil {
               let imageQuantity=imageslider?.count

               var i = 0
                    while i < imageQuantity! {

            let individualimage=imageslider?[i]["image"].stringValue


                        print(individualimageUrl!)
                        i=i+1
                    }


            }

回答1:


Let try this to add SDWebImage to ImageSlideshow

Create outlet for your slideshow

@IBOutlet var slideshow: ImageSlideshow!

With your Example :

var imageSDWebImageSrc = [SDWebImageSource]()

let url="https://myoscapp.com/boot/json_procuct_info.php"
    Alamofire.request(url, method: .get).validate().responseJSON { response in
        switch response.result {
        case .success(let value):
          let json = JSON(value)               
          let   imageslider = json[0]["products_gallery"].array
          if json[0]["products_gallery"].array != nil {
               for url in imageslider{
                   let image = SDWebImageSource(urlString: url)
                   if let sdURL = image{
                     imageSDWebImageSrc.append(sdURL)
                   }
               }
              self.slideshow.setImageInputs(self.imageSDWebImageSrc)
          }
        }
    } 

in Addition:

How to set ImageSlideshow image sources for ImageSource, SDWebImage, AFURLSource, AlamofireSource, KingfisherSource.



来源:https://stackoverflow.com/questions/46375713/how-to-pass-image-value-to-the-imageslideshow-using-swift

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!