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

  • SEARCH
  • Home
  • 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 561617
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 13, 20262026-05-13T12:28:06+00:00 2026-05-13T12:28:06+00:00

I have a NSURLConnection that is working fine when I allow the load to

  • 0

I have a NSURLConnection that is working fine when I allow the load to complete. But if the user hits the back button, meaning the webview will dissappear, I want to cancel the NSURLConnection in progress. But if have the webview call into this class when viewWillDissapear is called, and then I do:

[conn cancel]

I get an NSINValidArgument exception.

The connection is defined as instance data in the .h file as:

NSURLConnection *conn;

The async is initiated here:

NSURLRequest *request = [NSURLRequest requestWithURL:[NSURL URLWithString:articleURL]];

    if ([NSURLConnection canHandleRequest:request] && reachable) {
        // Set up an asynchronous load request
        conn = [NSURLConnection connectionWithRequest:request delegate:self];
        loadCancelled = NO;
        if (conn) {
            NSLog(@" ARTICLE is REACHABLE!!!!");
            self.articleData = [NSMutableData data];
        }
    }
  • 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-13T12:28:06+00:00Added an answer on May 13, 2026 at 12:28 pm

    The reason why you got the exception would be you are saving an autorelease object to an instance variable.
    “conn” would be auto-released immediately when a user click back button. After that, you call cancel. Therefore, you had the exception.
    To prevent this, you should retain NSURLConnection object when you keep it in an instance variable.

    conn = [[NSURLConnection connectionWithRequest:request delegate:self] retain];
    

    or

    conn = [[NSURLConnection alloc] initWithRequest:request delegate:self];
    

    Don’t forget to release this in the dealloc method.

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

Sidebar

Related Questions

I have a NSURLConnection which is a post to the server, but I expect
An iPhone question for you guys! I have an NSURLConnection that downloads XML from
I have a NSOperation that downloads some data using NSURLConnection, it looks somewhat like
I have a PHP script on a server, all working fine for most of
I have a little app that downloads stock prices and was working perfectly (for
I have looked at NSURLConnectionDelegate connection:didReceiveData not working already, but there didn't seem to
I have a NSURLConnection that gets data from a JSON web service, and everything
I have written an iOS app that calls NSUrlConnection multiple times to download image
We have a class that wraps NSURLConnection. It accepts a block that it calls
This is a simplification, but I have an app that has the following methods:

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.