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

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]…
Sanket Pandya
  • 1,095
  • 7
  • 21
0
votes
2 answers

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. Also, Im getting the error unrecognized selector…
0
votes
1 answer

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 initwithNameSpace: a variable named _ioQueue is used, but it is…
user975561
  • 514
  • 1
  • 6
  • 17
0
votes
1 answer

Importing a Header File and Having .m Changes Carry Over in Xcode

For my first iPhone app, I've been using SDWebImage on Github to pull images from the internet. This package comes with a SDWebImage.framework. I've been able to import that header file with "#import SDWebImage/UIImageView+WebCache.h which is fine…
darkginger
  • 652
  • 1
  • 10
  • 38
0
votes
2 answers

Clearing cache in SDWebImage for iOS app

Facepalm. I have been using a Github image downloader to display remote images. This is SDWebImage. I've been playing with this for an hour and a half and I'm totally lost apparently and would be eternally grateful if someone could help me figure…
darkginger
  • 652
  • 1
  • 10
  • 38
0
votes
1 answer

Use SDWebImage to load a image for imageview, How can i get the width of image?

when i use setImageWithURL to load online image, i got 0.000000, but when i load local image,i got the correct width. NSURL * url1=[NSURL…
Rock_Choke
  • 87
  • 7
0
votes
1 answer

using SDWebImage to cache Image

I'm very new to IOS development. Now, I want to cache all my images I get back from my webservice. I am saving all the urls in my core database. When I nee to fill a tableview I get the data from my core database, and put it in the tableview. Now I…
Sarah Geebelen
  • 173
  • 1
  • 9
0
votes
1 answer

SDWebImage Downloading Multiple Images (iOS)

For my iPhone app, I am trying to use SDWebImage to download multiple images from a list of links. The problem is after the images are downloaded, I don't know how to find out which image was downloaded from what link. For example, I have a list of…
BlueChips23
  • 1,861
  • 5
  • 34
  • 53
0
votes
2 answers

SDWebImage/UIImageView+WebCache.h File Not Found Error

I Integrated SDWebImage in my project , its work like a charm in my mac system but while i am sending my project to other mac system its showing error like SDWebImage/UIImageView+WebCache.h File Not Found but the same project working in my system…
ganesh manoj
  • 977
  • 10
  • 24
0
votes
3 answers

How to load a large size image after a small size image has loaded and showed on an UIImageView?

I can use the SDWebImage to load a small size image with an url to show on an UIImageView. But I don't know how to load a larger size image with another url to show on the same UIImageView after I has loaded the smaller size image. [aImageView…
Aevit
  • 21
  • 5
0
votes
1 answer

Integrating SDWebImage With YouTube Api

I am Trying to integrate SdWebImage With Youtube Api for the purpose of Fetching thumbnail image to cache them so as get rid of scrolling problem in UITableView.Problem is Youtube API Provide a URL that is for Thumbnail NSDATA which can be converted…
0
votes
1 answer

iphone image caching from initWithString in webview

i am parsing json from SBJson parser. I am using SDWebIamge for image caching. My JSON data has one tag namely "content" which has text + image links in between text. Just for example something like this

This is sample text.<\/p>\n

Rishi
  • 3,499
  • 8
  • 35
  • 54
0
votes
1 answer

SDWebImage: Prevent to many server request

I'm using SDWebImage framework to download profile images in my iPhone game. [cell.playerImage setImageWithURL:url placeholderImage: DefaultImage]; This works great, but I'm worried about the server performance. Each time the tableView is…
BlackMouse
  • 4,442
  • 6
  • 38
  • 65
0
votes
1 answer

iPhone SDK: SDWebImageDownloader Crashing

I'm using the SDWebImageDownloader library to download images asynchronously. The problem i'm having is when I click the back button before the images finish download the app is crashing on the following line in the SDWebImage Class: if([delegate…
user1417302
  • 411
  • 3
  • 9
  • 22
0
votes
2 answers

iOS 4.2 - SDWebImage

I am not able to use SDWebImage on my ios 4.2 app,the current SDWebImage library is for ios5.0 ARC i think. Please help is there any version to support iOS 4.2
user2136
  • 791
  • 1
  • 11
  • 26