Questions tagged [sdwebimage]

SDWebImage is a simple image library for iOS which provides caching and an easy way to load remote images asynchronously into UIImageViews.

This library provides a category for UIImageVIew with support for remote images coming from the web.

It provides:

  • An UIImageView category adding web image and cache management to the Cocoa Touch framework
  • An asynchronous image downloader
  • An asynchronous memory + disk image caching with automatic cache expiration handling
  • A guarantee that the same URL won't be downloaded several times
  • A guarantee that bogus URLs won't be retried again and again
  • Performance

More info can be found on the github page.

885 questions
0
votes
1 answer

SDWebImage Issue while Archieve

When i am trying to “Build Profile” everything is working fine. When i Archieve for submission, the SDWebImage is throwing error while importing UIImageView+WebCache.I m importing files as: #import I have been…
iCoder4777
  • 1,682
  • 1
  • 14
  • 35
0
votes
2 answers

Lazy Loading in UITableViewCell

I have a quick question, I want to use lazy loading in my application so searched on net and found a very good following library: https://github.com/rs/SDWebImage/tree/b357e8210c2a1c96ea768b16fd0c003baef77a04 Its very simple to integrate in the code…
0
votes
1 answer

UITableView Photos Show Up Multiple Times from Graph API

Right now I am making a Facebook Application For iPad. I pulling the wall and putting it into a UITableView. The way I am putting photos into the tableview is like this: In the requestDidLoad for querying for array of…
virindh
  • 3,775
  • 3
  • 24
  • 49
0
votes
1 answer

ios iphone app - set value to a variable in init function

I use sdwebimage and ktphotobrowser for my thumbnail gallery. because I have different galleries I need many sources. But i can't change the datasource in the SDWebImageDataSource.m file I made a variable named myStr and now i want to get it in the…
ercan
  • 825
  • 3
  • 16
  • 27
-1
votes
1 answer

Does SDWebImage support webp images without SDWebImageWebPCoder?

I was able to download and display Webp images without SDWebImageWebPCoder using SDWebImage 5.13.4. So what is the purpose of SDWebImageWebPCoder? Does SDWebImage already support Webp or am I wrong about something here? How can I identify if Webp…
Keer
  • 75
  • 7
-1
votes
1 answer

Flutter Xcode Build Failure: no visible @interface for 'UIImage' declares the selector 'imageByPreparingForDisplay'

ARC Semantic Issue: no visible @interface for 'UIImage' declares the selector 'imageByPreparingForDisplay' So I have been going through the difficult task of getting my client's Flutter app over to IOS and built. I have been documenting a long…
anon
-1
votes
1 answer

iOS app: how to use kingfisher/sdwebimage to download aws s3 image

i want to show images from aws s3 protected folder in collectionview or list in my swiftui project using kingfisher. But i couldn't find a solution to show the images as aws requires additional headers to be included in request. I tried adding…
Rajeev Kumar S
  • 308
  • 4
  • 8
-1
votes
4 answers

Collapse UIImageview in UITableview cell, when it doesn't return an image

Summary of the problem I have a UITableView in which I want to Collapse it's UIImageView cell part, whenever it doesn't return an image, as seen below first image of tableview cell (the expected result) second image of tableview cell (the no image…
-1
votes
1 answer

sd_setImage show blue image

I am using SDWebImage to set the cells button image: cell.categoryButton.sd_setImage(with: URL(string:cell.image), for: .normal, placeholderImage: UIImage(named: "image")) but what I get is a blue image like that: I don't know why
Mor Goren
  • 105
  • 9
-1
votes
3 answers

SDWebImage Unrecognised Selector

I am getting the following crash while displaying the image in cell. UIImageView sd_setImageWithURL:placeholderImage:completed:]: unrecognized selector sent to instance 0x7fbce1521e70" I followed all the instruction provided but still not able to…
Rahul
  • 3
  • 5
-1
votes
1 answer

One of two images loaded in tableviewcell Larger than imageView

I am downloading images from server using SDWebImage Library and place in UITableViewCell but all images Loaded in imageView correctly but last two images loaded larger than imageview size. i put imageView in A View and set aspect ratio of Parent…
Majid
  • 41
  • 9
-1
votes
1 answer

Can't Reload Collection View Swift 4

In a detail view controller, the user can add a character to the favorites list. Clicking the favorite button adds the image url to CoreData. Then in the collection view controller, I run the code below: override func viewDidLoad() { …
Medicine Man
  • 81
  • 2
  • 10
-1
votes
2 answers

Set image from firebase image URL to a cell in Swift

I am able to get it working if the ImageView is in the same View Controller. But I created a custom cell .xib and a model class. All data (text) seems to be transferring, even the URL of the Firebase database image, but the image doesn't change, the…
-1
votes
4 answers

SDWebImage giving nil with URL

I've a string in which I've comma separated links of images. Here is how I'm splitting it into an array: let imagesLinks = imageLins.components(separatedBy: ","). Then I've used for loop to get one link, download the image and storing it in a…
Chaudhry Talha
  • 7,231
  • 11
  • 67
  • 116
-1
votes
1 answer

SDImageCache unable to retrieve the saved images in Cache

I'm using SDWebImage to store the images in cache and disk memory using a key but while querying using that key i am not getting the images, the code is SDImageCache *imageCache = [[SDImageCache alloc]…
R. Mohan
  • 2,182
  • 17
  • 30
1 2 3
58
59