0

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?

Yannick Blondeau
  • 9,465
  • 8
  • 52
  • 74
Larry
  • 2,172
  • 2
  • 14
  • 20

1 Answers1

1

You can use AFNetworking (https://github.com/AFNetworking/AFNetworking) which has an ImageView Category that let's you load images asynchronously.

[content.imageView setImageWithURL:thumbURL placeholderImage:[UIImage imageNamed:@"thumbnail_loading.jpg"]];

content is a view with an ImageView named 'imageview' as a subview.

Eric
  • 321
  • 1
  • 6
  • 17