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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T22:06:50+00:00 2026-05-20T22:06:50+00:00

The dealloc method of my view controller class is not called when popped after

  • 0

The dealloc method of my view controller class is not called when popped after being pushed with the following code:

    self.playerViewController = [[VideoPlayerViewController alloc] init];

[self.playerViewController set_video:video];

    [self.navigationController pushViewController:self.playerViewController animated:YES];

[self.playerViewController release];

However if I change the push code to the following, then my dealloc is called appropriately after the view controller is popped:

    playerViewController = [[VideoPlayerViewController alloc] init];

[playerViewController set_video:video];

[self.navigationController pushViewController:playerViewController animated:YES];

[playerViewController release];

I thought I understood the use of dot notation/self, but obviously not. Can anyone explain the problem here?

Here is the property:

@property (nonatomic, retain) VideoPlayerViewController *playerViewController;

and here is the synthesize:

@synthesize playerViewController;
  • 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-20T22:06:51+00:00Added an answer on May 20, 2026 at 10:06 pm

    You are retaining twice.

    self.playerViewController = [[VideoPlayerViewController alloc] init];
        ^ retain + 1                                        ^^^^^ retain + 1
    

    But you only release one time.

    To fix your memory management issue you could change the code to something like this:

    self.playerViewController = [[[VideoPlayerViewController alloc] init] autorelease];
    

    And many people say [self.foo release] is bad style. You should consider to replace it with [foo release]

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

Sidebar

Related Questions

I've got a view controller that after leaving the stack, shows a memory leak
I'm pushing a view controller onto my navigation controller's stack from within my TableViewController's
Question is should i use properties for my view controllers? Consider the following case:
I have successfully loaded the muscleName items into a table view but am not
I have a view controller who's views are loaded from a nib file. The
i have created one view Controller(A) and this controller is using as a view
The Project I'm working on a relatively simple iPhone OS project that's navigation controller
I'm dealing with viewDidUnload and dealloc methods and I've founded a problem when calling
I have a situation where I build a view with a table and another
I started to learn using Instrument, but I cannot figure it out. After I

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.