Questions tagged [hjcache]

HJCache is an open-source caching library for asynchronous loading of images (or other resources) for iOS.

HJCache is an open-source caching library for asynchronous loading of images (or other resources) for iOS.

The claimed goals of the library are:

  • Make it easy to use asynchronously loaded images in iOS apps.
  • Make it easy to use a shared file cache.
  • Make memory management ‘just work’ according to Cocoa norms.
  • Support typical cases of viewing images, e.g. scrolling through a list of tweets showing the tweeters profile pic, swiping through a photo album loaded over the internet...
  • Allow the library to be used for other kinds of data too.

More information is available at the library author's website as well as on the project's GitHub page.

10 questions
2
votes
2 answers

Are there caching framework like SDWebImage or HJCache supporting ARC?

I found https://github.com/rs/SDWebImage and https://github.com/markofjohnson/HJCache Both good approach for image async download and caching on disk and memory. Is there something similar but supporting ARC?
Emanuele Fumagalli
  • 1,476
  • 2
  • 19
  • 31
2
votes
0 answers

How to modify an image before caching it with HJCache?

I've been using HJCache to do asynch image loading and caching. It works great, but I have use case where I can't seem to get HJCache to handle. I have an images loaded in a table view, and the same images appears bigger when you select the…
MGA
  • 3,711
  • 1
  • 21
  • 22
1
vote
1 answer

HJCache UITableView overlapping images

When I use HJCache in a UITableView, images are overlapping while scrolling up and down, so the images overlap while new cells are being loaded. The next cell already contains an image, and then you can see it's loading an image and it gets placed…
MaikelS
  • 1,309
  • 4
  • 16
  • 33
1
vote
1 answer

HJCache moHandlerFailed HJMoHandler

I've always used HJCache without problems, but with a particular imageset in a tableview i get continuous errors. 2011-10-31 13:39:12.890 Koopeenveilinghuis[5576:607] moHandlerFailed HJMOHandler users:1 retains:3 2011-10-31 13:39:19.809…
MaikelS
  • 1,309
  • 4
  • 16
  • 33
1
vote
1 answer

HJCache class issue

Good morning.. This is my issue.I am using HJCache ios library to asynchronously load images from the URL.I was successful when i used this in loading the images in the tableview.But when i used the same to load the images in a scroll view in a…
Sankar Chandra Bose
  • 377
  • 1
  • 12
  • 27
1
vote
1 answer

HJCache library UITableView Issue

I am trying to run my app with HJCache library for asynchronous download of images over the net, but I am getting this issue after I link the delegate and dataSource to the TableView. -[UIView tableView:numberOfRowsInSection:]: unrecognized…
Luai Kalkatawi
  • 1,492
  • 5
  • 25
  • 51
0
votes
1 answer

combine AQGridView with HJCache

I am trying to combine AQGridView with HJCache. However, separately, both works fine. but i combine them together, it seems that they 're not compatible with each other. Any one done this before? Can i have a hint?
Larry
  • 2,172
  • 2
  • 14
  • 20
0
votes
2 answers

IOS Display Image using HJCache

I am new to IOS but I have made a small application that uses HJCache to display Images. All fine, I found a way to Display an Image with HJCache, but I have a big Problem, I cannot unterstand how I display the Image to Show me the result when the…
0
votes
2 answers

How to refresh images using HJCache?

I'm trying to display an image from a webcam in my app using HJCache. The webcam refreshes its image every 5 minutes. I'd like to have a refresh button, so that users could click it to see a new image (if available). My code so…
Antonio Giungato
  • 145
  • 1
  • 2
  • 10
0
votes
2 answers

iOS : app crash / memory is filled in when scrolling a UITableView

One of the views od my app shows a list of images. When I scroll that list several times then my app crashes. I profiled it with instrument and it seems that the cells of the list are taking more memory as the list is scrolled. Should a custom…
Alexis
  • 16,629
  • 17
  • 62
  • 107