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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T11:26:25+00:00 2026-05-31T11:26:25+00:00

I see some strange behavior which I do not understand. I have a helper

  • 0

I see some strange behavior which I do not understand.
I have a helper class HelperClass, which is allocated and retained in a superclass SuperClass.

In the dealloc function of the superclass, I release the HelperClass. This is all fine. But when I subclass, the HelperClass is released, but on the HelperClass dealloc is not called for some reason. It does work when I release the HelperClass in the subclass.

Any ideas how this could be?

(Edit: it seems to work fine if I explicitly call [HelperClass dealloc] instead of [HelperClass release], but it this a proper way of doing this?)

@interface SuperClass : UIViewController {

    @protected
    PlayerHelper* _mediaPlayerHelper;    
}

@end

Initiated in:

- (void)viewDidLoad
{
    [super viewDidLoad];            
    // Add observer/helper for audio events
    _mediaPlayerHelper = [[[PlayerHelper alloc] init:self] retain];
}

With dealloc:

- (void) dealloc {
    if(_mediaPlayerHelper != nil) {
        [_mediaPlayerHelper release];
    }

    [super dealloc];
}

If I subclass this like:

@interface SubClass : SuperClass

And release this class, the HelperClass does not get properly dealloc-ed. It does work if I release the helper specifically in the subclass.
When releasing the subclass, the dealloc of the superclass is called, but not the dealloc in the helper.

The helper is a simple NSObject class:

@interface PlayerHelper : NSObject
  • 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-31T11:26:26+00:00Added an answer on May 31, 2026 at 11:26 am

    you are double retaining here

    [[[PlayerHelper alloc] init:self] retain];
    

    instead use:

    [[PlayerHelper alloc] init:self];
    

    http://interfacelab.com/objective-c-memory-management-for-lazy-people/

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

Sidebar

Related Questions

Having some strange behavior here. I have some XSLT which generates some html with
When using Rails date_select with :prompt => true I see some very strange behavior
I see some resources for gcc, but not for Visual Studio. Anyone have a
I have some strange behavior occurring in an ASP.NET application that I am trying
I see some strange behavior in one of my UITableViewCell s. When setting the
I have some strange behavior in my rails3 app. When I pick a date
I'm getting some strange behavior from a listview/the getChildAt method. I have a HashSet,
I see some strange behavior on the maximum heap size I get on Sun's
I can see some options available: 1) Use PEAR's POP3 class --> tried it,
I'm curious to see if anyone can shed some light on some strange text

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.