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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T00:11:56+00:00 2026-05-25T00:11:56+00:00

I receive an error [myObject method]: message sent to deallocated instance 0xbc05440. This must

  • 0

I receive an error “[myObject method]: message sent to deallocated instance 0xbc05440”. This must be because I released something I still need.

I hunted around for appropriate nils, releases, etc, but I can’t find where I release this object.

I then placed a break inside myObject’s dealloc. This catches the dealloc, but the stack is only showing assembly code. If i step from this place, i dont get any hints. How do I find where the dealloc starts?

  • 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-25T00:11:57+00:00Added an answer on May 25, 2026 at 12:11 am

    A likely suspect for your problem is autoreleased variables. They’re the sneaky ones that will be released without you explicitly releasing them. So be sure you’re not using an autoreleased variable and expecting it to stick around.

    As for your specific question, you don’t actually care about dealloc‘s call stack. dealloc is never called right when you release something. The actual deallocating of objects is handled by the runtime outside the normal run-loop context of your app, so looking at the call stack at that point will tell you absolutely nothing.

    What you do care about is release. If you want to know when your object is being released, you can override release in the object of interest, and simply call right through to super’s implementation. You can then set a breakpoint there to see the current call stack at the time of release. For clarity, it would look like this:

    - (oneway void)release {
        [super release]; // Put a breakpoint here.
    }
    

    Just something to be aware of: You’ll likely see more releases than you expect. This is because the system will retain and release classes internally quite frequently, so you’ll need to use discretion when determining what releases are actually worth noting. This approach is just a rough tool. NSZombies are also very useful for tracking down over-released objects.

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

Sidebar

Related Questions

I receive this message (see image below) when I try to edit in debugging.
I receive this error when files are loading and sometimes after they have stopped
When I execute the code below I receive the error message: LINQ to Entities
I'd like to receive error logs via email. For example, if a Warning-level error
When I launch CruiseControl.NET with a particular configuration file I receive the following error:
I'm using subclipse in Flex Builder 3, and recently received this error when trying
I receive this Run-Time Check Failure upon the return in the following code. I
So assume I have a class that has an init method that does something
I receive error messages when attempting to encode files in Expression Encoder when the
Why do i receive error in the following declaration ? List<int> intrs = new

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.