Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Image loading delay in minutes when 100 of images to load #100

Open
kamabhavik opened this issue Jun 23, 2015 · 0 comments
Open

Image loading delay in minutes when 100 of images to load #100

kamabhavik opened this issue Jun 23, 2015 · 0 comments

Comments

@kamabhavik
Copy link

am using FastImageCache Caching Library for loading and caching the images asynchronously.

i have a requirement to load around 100 images in one view at once with the following code in For Loop.

FICDPhoto *photo = [[FICDPhoto alloc] init];
[photo setSourceImageURL:[NSURL URLWithString:logo]];

                    [[FICImageCache sharedImageCache] retrieveImageForEntity:photo withFormatName:FICDPhotoSquareImage32BitBGRAFormatName completionBlock:^(id<FICEntity> entity, NSString *formatName, UIImage *image) {

                        if(btn.tag==65){

                        }
                        [btn setImage:image forState:UIControlStateNormal];
                    }];

now the issue is it taking more then one minute to load images.its not showing images as one by one bu rather its just showing all images at once after one minute of delay..

I want to solve this issue by showing images as downloaded one by one rather then showing all images at once

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant