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

learn more… | top users | synonyms

1
vote
3answers
79 views

how can i check if NSUrl is a valid image url?

I'm using SDWebImage library and I have this code: [cell.imgLogo setImageWithURL:[NSURL URLWithString:[item objectForKey:@"s_logo"]] placeholderImage:[UIImage ...
3
votes
3answers
100 views

SDWebImage UITableView Cell Images Not Persisting

I am using SDWebImage library in order to download and cache images and from a web service asynchronously. Following is the method i use to download the images: - (void) downloadThumbnails:(NSURL ...
2
votes
1answer
36 views

SDWebImage With Custom UITableView Cell Image

I am trying to use SDWebImage library with a custom UITableViewCell. Below is the method that is downloading the images from the web service: - (void) downloadThumbnails:(NSURL *)finalUrl { ...
0
votes
1answer
23 views

Is there any way to stop an image in a UIImageView from lazy loading with SDWebImage on iOS?

I'm using the following code to lazy load an image into my UIImageView: [self.imv1 setImageWithURL:[NSURL URLWithString:myURL] placeholderImage:[UIImage imageNamed:@"loading.png"] ...
0
votes
0answers
49 views

SDWebImage multiple image download issue

I need images from URLs in my app and I also need to cache them for reuse. Here is my code to download various images from various URLs: __block UIActivityIndicatorView *activityIndicator = ...
0
votes
2answers
95 views

Slow performance UICollectionView with async image downloading

I'm getting slow performance when using third party frameworks for async images download. I've tried the AFNetworking and SDWebImage, the scrolling of the UICollectionView becomes very slow. I've ...
0
votes
1answer
70 views

Table view not working smoothly with SDWebImage

Why isn’t my table view not working smoothly? I use SDWebImage to set the image from a URL. I'm trying to draw 3 images in each row of the table view. It works fine when arrList is small, but when I ...
0
votes
1answer
41 views

Error Using MWPHotoBrownser

I got this error when I'm using the MWPhotoBrownser and I have no idea how to fix it. Semantic Issue "Cannot find protocol declaration for SDWebImageDecoderDelegate" in the file MWPhoto.h #import ...
2
votes
1answer
96 views

If no Image from API, need to realign Table View Cell

I'm using SDWebImage. I'm pulling the images in correctly from a web service API, but if the API I'm getting the response from doesn't have an image ("null"), I want to realign my Table View Cell. ...
1
vote
2answers
43 views

tapping on UIImageView and opening a bigger Image

I have an app that displays, in a tableview, an image and some details. I'm trying to make it so that, when someone touches on the image displayed in my table view, the app opens the same image in a ...
0
votes
1answer
133 views

sdwebImage setImageWithURL: placeholderImage: completed:

i use the SDWebImage new version and call: self.imgIndicatorView.center=self.img.center; self.imgIndicatorView.hidden=NO; [ self.imgIndicatorView startAnimating]; __block ...
1
vote
1answer
67 views

UIImageView finding how much is out of bounds

I'm scaling an image within my UIImageView using : UIViewContentModeScaleAspectFill The image scales nicely but my issue is the ImageView sits within a UIScrollView, I've set the origin to 0,0. This ...
0
votes
0answers
28 views

Fast enumeration crash on updating constraints

I have a UICollectionView with a lot of cells that contain a UIImageView. I use SDWebImage to load images into them. When I scroll really fast, the application crashes. LLDB doesn't do me any good, ...
2
votes
0answers
77 views

SDWebImage is crashing while loading the image - Terminating app due to uncaught exception 'NSInternalInconsistencyException',

I am using SDWebImage library to load images to uitableview. Please see the code for loading below. But when i run from device it is crashing occasionally stating that "Terminating app due to uncaught ...
0
votes
1answer
41 views

SDwebimage is not responding second time

I am facing the issue ,below is the code. It shows error for the very first time and then no completion block is calling . [self.comicsImage setImageWithURL:[NSURL URLWithString:self.imageUrl] ...
5
votes
1answer
225 views

Occasional black screen after resuming iPhone app

While testing a new build of our iPhone app, we're occasionally seeing the app window go completely black when resuming the app sometime after applicationWillEnterForeground. The only way to make the ...
1
vote
1answer
54 views

SDWebImage and setting custom HTTP headers?

I´ve just changed my code for caching images away from EGOImageCache to SDWebView. Unfortunately i don´t know how to set custom HTTP headers as i have to send authentification to be able to fetch ...
0
votes
1answer
107 views

iOS set timeout for url request in SDWebImage

I'm using SDWebImage library for caching image in my iOS app. Now when loading image from server I'm showing an activity indicator on the imageview. I'm using the following code __block ...
0
votes
2answers
92 views

SDWebImage NSURLRequests failing intermittently

I'm loading images from a remote server using SDWebImage into a UICollectionView using the following code: [myCell.imageView setImageWithURL:imgURL placeholderImage:nil options:SDWebImageRetryFailed ...
0
votes
2answers
104 views

iOS SDWebImage - How to properly handle retina images on different devices?

I am using the SDWebImage library for image caching in my apps, but haven't been able to get retina images to display properly. I know there has been a lot of conversation about the downloading of ...
0
votes
1answer
144 views

iOS use cached image with SDWebImage properly

I am using SDWebImage to get pictures. let's say I have two view controllers A and B. B is the next view of A. they need to show the same image: [iconIamgeView setImageWithURL:[NSURL ...
0
votes
1answer
29 views

SDWebImage not show placeholderImage

i have a image link people.avatarbig:http://ws.loc.sh/images/515b9f54e4b04a5a481030f9 when you use browse to open it,you will see nothing,so SDWebImage should show placeholderImage but now it show ...
0
votes
0answers
72 views

SDWebImage not showing randomly in UITableViewCell

Hello I have a script that downloads an image and dynamically sets the UITableView height after it finishes the download, but some images randomly do not show , the curious think is that when i change ...
0
votes
3answers
71 views

How to make SDWebImage maintain size in UITableViewCell

cell.imageView is displayed correctly on first loading. After the UITableViewCell move off screen and back on again, suddenly cell.imageView size has changed to fill the height of the cell. Same thing ...
2
votes
1answer
146 views

SDWebimage scrolling

I use SDWebimage to load and cache pictures, and now I am looking for a way to swipe/scroll through the images. I've tried different approaches but I can't seem to get it working, can someone help me ...
0
votes
1answer
69 views

AFImageRequestOperation with SDWebImage issue

I use AFImageRequestOperation to download some icons, meanwhile use SDWebImage to download some pics for main view. Each AFImageRequestOperation is added to my publicOperationQueue defined in app ...
1
vote
2answers
57 views

Table view mixes up images

I use SDWebImage to load and display async images in TableView. But sometimes when I scroll up and down fast, it mixes up all images and display it in other rows. This is my cellForRowAtIndexPath: - ...
0
votes
1answer
217 views

Memory management, many images in UICollectionView

I'm showing thumbnails of pictures (from the internet) in a UICollectionView in my app. When there are too many (like 20+) and too high res'd images the app simply crashes. I'm sort of an amateur when ...
2
votes
3answers
437 views

SDWebImage does not load remote images until scroll

I am using SDWebImage library to load remote images into a table view which uses a custom cell class i have created. I simply use [cell.imageView setImageWithURL:url placeholderImage:[UIImage ...
0
votes
1answer
43 views

Can I use SDWebImage with POST requests?

Here is my case. I'm making an app which download a lot of images from a server. I'm using AFNeworking and everything is ok except image caching. It turns that the image server headers must have the ...
0
votes
0answers
43 views

SDWebImage crashes for unreconized selector

I'm tring to use sdwebimage but my app crahses when it try load images with it... i don't know why the debug says [UIImageView setImageWithURL:placeholderImage:]: unrecognized selector sent to ...
0
votes
1answer
79 views

Images in TableView Issue

I use SDWebImage to download the Pictures from my parsed XML file, and display it in a TableView. But the problem is that some images are not shown. This it how it looks like: This is my code for ...
0
votes
1answer
108 views

Incompatible block pointer types SDWebImage

I checked some answers on this, but this is specific to my code, and I cannot get this to work. Any thoughts? Error starts at completed:^(UIImage *image, NSError *... Full code //Load from URL ...
0
votes
1answer
72 views

SDWebImage not running

This problem may be weird, but it is happening and I am not getting it. I have just downloaded the code from https://github.com/rs/SDWebImage and try to run example project. It is building ...
0
votes
2answers
66 views

Image not being set in the UItableViewCell:

I am trying to set an image to the UITAbleViewCell but it does not show up untill unless scrolled. I apologize if its repetitive. But I've tried setNeedsDiplay, reloadRowsinIndexPAth, and all other ...
1
vote
2answers
113 views

SDWebImage: running a method BEFORE image is refreshed and placed

So before anything else, I found this: SDWebImage process images before caching which kind of helps but I really want to use SDWebImage, is there a way to process the images via a method outside of ...
1
vote
1answer
117 views

Why is SDWebImage with UITableView causing exception?

I'm a noob to iphone development and I am trying to implement the SDWebImage library into my project. My project builds fine, however it when I display my tableview my app crashes with an invalid ...
0
votes
1answer
110 views

iOS SDWebImage for UITableView?(solved)

This is my code,I have created a cusom UITableViewCell and uses SDWebImage to load image asynchronously. But it is not working. When I use default cell like this "cell.imageView setImage..." it works ...
0
votes
1answer
75 views

Show and Hide ActivityIndicator using SDWebImageDownloader

I am loading image using SDWebImageDownloader classes on every button click in my view. __block UIActivityIndicatorView *activityIndicator = [[UIActivityIndicatorView alloc] ...
0
votes
1answer
69 views

How know whether image is coming from cache or form url in SDWebImage?

I am using SDWebImage for loading a list of images and it was really good but while loading images next time it's loading image from cache if the url is same. But I need to know its coming form cache ...
0
votes
1answer
272 views

SDWebImage showing placeholder for images in cache

Using SDWebImage 3 in an iOS 5.1 project (iPad). We show fairly large images( 700x500), and we have lots of them (+1000). We are prefetching the images and caching to disk and then allows the user ...
0
votes
1answer
84 views

SDWebImage 3 and iOS 5.1 Subscript Compiling error

Per the SDWebImage about SDWebImage 3 supports iOS 5.0 ("The version 3.0 of SDWebImage isn't fully backward compatible with 2.0 and requires iOS 5.0 minimum deployement version"). However, I am ...
0
votes
1answer
140 views

Images wont get cached when using SDWebImage

I cant get SDWebImage to work correctly. I have UITableView with images that are always showing, yet the cache is always empty. in other words, the images are not connected to the SDWebImage cache. ...
1
vote
2answers
138 views

Explain __weak and __strong usage reasons in SDWebImage code

I think I understand strong and weak keywords well, but I don't understand how it's used in the code below. This code is from SDWebImage by Olivier Poitrey available on github. I understand strong ...
0
votes
1answer
323 views

SDWebImage Download image and store to cache for key

Hello I am using the SDWebImage framework in a project and I was wanting to download and cache some images, but I think my code is storing the image in the cache twice? Is there a way to store a ...
0
votes
1answer
72 views

Problems with current version of SDWebImage

When I download the latest sourcecode of SDWebImage from the GitHub repo, I get compile errors in it. For example in SDImageCache.m I have undeclared or unsynthesized properties. In ...
-1
votes
1answer
59 views

Working version of SDWebImage

I accidentally deleted my old SDWebImage version from my project and now I need to readd it again. The newest versions can be added as a framework to Xcode, but that doesn't work, because if I do ...
0
votes
0answers
77 views

Can SDWebImageDownloader cancel download?

I'm using SDWebImageDownloader (UIImageView+WebCache.h) to download some image. When image is downloading, and user navigates back to previous view controller, I want to cancel SDWebImageDownloader's ...
0
votes
0answers
65 views

SDWebImage's SDimageCache Error at Runtime

I started using the SDWebImage. I followed the instructions and installed it in my project. But when i call it inside the app through these functions error is generated. "(UITableViewCell ...
1
vote
1answer
233 views

SDImageCache - imageFromMemoryCache returns nil

I'm using the latest version of SDWebImage (SDImageCache), and saving image by code [[SDImageCache sharedImageCache] storeImage:image forKey:@"1"]; and I'm sure the image have been saved ...

1 2 3