I am loading images in my collection view using SDWebImage
like so...
cell.imageView.sd_setImage(with: url, placeholderImage:UIImage(named:"appLogo.jpg"))
Now I want in an array all the images thus obtained from the url & assigned to the imageView
. So what should be done.
Please note..I don't want the url's in an array but instead the images I get from those url's.