Tagged Questions
0
votes
1answer
38 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
72 views
How do I cache a large file using AFNetworking and SDURLCache
I'm trying to download a file using AFNetworking and cache the file using SDUrlCache. Perhaps there is a part that I'm missing but I can't seem to figure out how to determine if it's working, and if ...
0
votes
1answer
331 views
AFNetworking check if image is cached
I have this method, which downloads full size image for UIImageView when clicked on cell.
- (void)configureView
{
NSURLRequest *URLRequest = [[NSURLRequest alloc] initWithURL:self.imageURL];
...
1
vote
1answer
244 views
POST Request returning unwanted cached results (AFNetworking)
I'm using AFNetworking to make POST requests from a shared "authenticator" class that passes in a user's username and password. Here is the POST request that I make:
NSURL *url = [NSURL ...
3
votes
2answers
819 views
NSURLCache returning nil when trying to access cached request from disk
I am trying to use the disk based url cacing built in to iOS 5. I have a json feed which i want to load and then cache, so its instantly loaded the next time a user uses the app.
The cache.db file is ...
1
vote
2answers
1k views
NSURLCache Images Using AFNetworking API
I have an app which is downloading images from the server. The images are approx 56 KB and there are at least 30 of them. There are times when the user either have no connection or Edge connection ...
0
votes
1answer
383 views
How should I pre-load all images and cache them using AFNetworking?
I need to pre-load and cache all (Nearly 80) images in the beginning of the application, while showing "Please Wait" to the user. What I did is:
NSMutableArray *operations = [[NSMutableArray alloc] ...
1
vote
1answer
1k views
AFNetworking not caching HTTPS request
We are building an iOS app that uses AFNetworking to connect to a server running Tornado. The server includes the header Cache-Control: private, max-age=900 in the response. When running the server on ...
9
votes
3answers
375 views
How to enforce caching in AFNetworking despite cache headers
I want to enforce caching in AFNetworking even when cache header is Cache-Control:·private there are no other cache-relevant headers, I understand it will be a time-based cache and I do not have a ...
4
votes
4answers
2k views
Pre-cache Images for AFNetworking's UIImageView category
When my app loads, I pull down a JSON representation of 99 objects.
Each object has an 'image_url' field, which I pass to AFNetworking's setImageWithURLRequest.
My images load in a tableView, and ...
0
votes
1answer
1k views
iOS Caching images with AFImageCache doesn't seem to work
I'm trying to cache some images loaded from a URL by using AFImageCache, without success... I'm not sure If i'm doing anything wrong and would love your opinions if you've ever used this library.
...
3
votes
1answer
2k views
How to configure the cache when using AFNetworking's setImageWithURL
I'm using setImageWithURL to download some images in my app. Is it possible:
to specify how long this image must be held in cache (eg 1 week)?
to specify how big the the maximum total size of the ...
32
votes
3answers
2k views
SDURLCache with AFNetworking and offline mode not working
I'm using AFNetworking and SDURLCache for all my networking operations.
I have SDURLCache set like this:
SDURLCache *urlCache = [[SDURLCache alloc]
initWithMemoryCapacity:1024*1024*2 // ...
1
vote
2answers
3k views
How To Disable AFNetworking Cache
Is it possible to disable all the cache features from AFNetworking?
I am building my own custom cache system and don't want this to take up disk space too.
Thanks,
Ashley
