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 680867
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 14, 20262026-05-14T01:25:10+00:00 2026-05-14T01:25:10+00:00

Sorry if this has been asked before, but I’m wondering what the best memory

  • 0

Sorry if this has been asked before, but I’m wondering what the best memory management practice is for NSURLConnection. Apple’s sample code uses -[NSURLConnection initWithRequest:delegate:] in one method and then releases in connection:didFailWithError: or connectionDidFinishLoading:, but this spits out a bunch of analyzer warnings and seems sort of dangerous (what if neither of those methods is called?).

I’ve been autoreleasing (using +[NSURLConnection connectionWithRequest:delegate:]), which seems cleaner, but I’m wondering–in this case, is it ever possible for the NSURLConnection to be released before the connection has closed (for instance, when downloading a large file)?

  • 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-14T01:25:10+00:00Added an answer on May 14, 2026 at 1:25 am

    This returns autoreleased NSURLConnection:

    +[NSURLConnection connectionWithRequest:delegate:]
    

    If you want to keep the reference you need to retain it. Once you are done then release it.
    It does not help to autorelease already autoreleased object.

    I assume the example code will somewhere retain the NSURLConnection and then release it when the connection fails, as shown in your example.

    This returns allocated object that you have to take care of cleaning

    -[NSURLConnection initWithRequest:delegate:]
    

    Because the method is named init, the other one above does not have init in the name or copy so you don’t have to worry about the memory management.

    If your object internally creates NSURLConnection at some point and then releases it when connection is done or failed you should reset the reference to nsurlconnection to nil.

    In your dealloc you should cleanup the NSURLConnection as well, if it is nil nothing will happen but if it is still allocated it will clean it up.

    See apple doc about memory management – it’s quite simple.

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

Sidebar

Related Questions

Sorry if this has been asked before, but I am wondering what the use
Sorry if this has been asked before, but I couldn't find a good example
Sorry if this has been asked before, I did check but couldn't find anything...
sorry if this questions is overly basic or has been asked before but I
I'm sorry if this has been asked before, but I'm in kind of a
I'm sorry if this questions has been asked before, but I couldn't find an
Sorry if this has been asked before but I've tried searching and can't find
Sorry if this has been asked before, but as I understand it, in C++11,
sorry if this question has been asked before, I searched but wasn't sure on
Sorry I know this question has probably been asked before, but do you know

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.