Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6791105
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T17:48:21+00:00 2026-05-26T17:48:21+00:00

I am downloading a bunch of images via ASINetworkQueue . I have no problems

  • 0

I am downloading a bunch of images via ASINetworkQueue. I have no problems in the simulator, but on the iPad some of the images (each time they are different) are not downloaded. How can I fix this?

Here is the code:

Queue Creation:

if (addedPaintings > 0) {
            [currentPaintingsArray addObjectsFromArray:objectsToAdd];
            [unseenPaintings addObjectsFromArray:objectsToAdd];
            [self downloadImages];
        }
        // update plist file if data was altered.
        if (addedPaintings > 0 || removedPaintings > 0)
            [currentPaintingsArray writeToFile:dataFilePath atomically:YES];
        else
            [self completeSync:request.responseStatusCode];
}

Image Download method:

- (void) downloadImages {
    [networkQueue reset];
    [networkQueue setDelegate:self];
    [networkQueue setShowAccurateProgress:YES];
    [networkQueue setDownloadProgressDelegate:self.progressView.customView];
    [networkQueue setQueueDidFinishSelector:@selector(imageQueueDownloadComplete:)];

    for (NSDictionary *dict in [Globals sharedGlobals].unseenPaintings) {       
        NSString *link = [dict objectForKey:@"link"];
        NSString *smallLink = [dict objectForKey:@"smallLink"];
        if ([link length] != 0) {
            NSURL *url = [NSURL URLWithString:[[URL stringByAppendingString:GALLERY] stringByAppendingString: link]];
            ASIHTTPRequest *downloadRequest = [[ASIHTTPRequest alloc] initWithURL:url];
            [downloadRequest setDownloadDestinationPath:[documentsDirectory stringByAppendingPathComponent:link]];
            [downloadRequest setDidFailSelector:@selector(imageDownloadFailed:)];
            [downloadRequest setDidFinishSelector:@selector(imageDownloadComplete:)];
            [downloadRequest setUserInfo:dict];
            [downloadRequest setDelegate:self];
            [networkQueue addOperation:downloadRequest];
            [downloadRequest release];

            NSURL *urlCarousel = [NSURL URLWithString:[[URL stringByAppendingString:WS_IMAGES] stringByAppendingString: smallLink]];
            downloadRequest = [[ASIHTTPRequest alloc] initWithURL:urlCarousel];
            [downloadRequest setDownloadDestinationPath:[documentsDirectory stringByAppendingPathComponent:smallLink]];
            [downloadRequest setDidFailSelector:@selector(imageDownloadFailed:)];
            [downloadRequest setUserInfo:dict];
            [downloadRequest setDelegate:self];
            [networkQueue addOperation:downloadRequest];
            [downloadRequest release];
        }
    }
    [networkQueue go];
}
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T17:48:21+00:00Added an answer on May 26, 2026 at 5:48 pm

    Based on the comments you’ve left to the question, (Specifically: Also, if I change the download method from networkQueue to [downloadRequest startAsynchronous], everything works.) it may be that your request is timing out when being run synchronously.

    Another thing you should know is that the “ASI network classes” are no longer being maintained. The developer offers several alternatives in his blog post announcing the end-of-life of that software.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have bunch of images from dozen or so sources and I am downloading
I have a UIViewController subclass that loads a bunch of images for each cell
Situation: I have an ArrayList<String> containing a bunch of links to images (http:/www.foo.com/bar/image1.jpg, http:/www.foo.com/bar/image2.png,...
I have built a system which downloads images from a bunch of URLs, depending
In my app, I have a bunch of different image packs to download. The
I have a bunch of code that's already written which currently relies on images
For downloading a number of images I'm making DownloadDataAsync calls to separate instances of
I am downloading some information from a JSON feed about countries, states and their
I have some very large mp3's stored at a remote location and I presently
After downloading and installing exuberant ctags, I get some issues hinting that the ctags

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.