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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 6, 20262026-06-06T16:17:22+00:00 2026-06-06T16:17:22+00:00

I have a disappearing pointer db ; the value is properly set during creation

  • 0

I have a disappearing pointer db; the value is properly set during creation of an NSDocument but at the moment I want to open a sub window, the value has changed to nil! I have the following in an NSDocument subclass:

 @interface MW_Document : NSDocument
 {
     MW_WorkerWindowController *workerController;
     __strong MW_db *db;
 }

 - (IBAction)showWorkerManagementPanel:(id)sender;
 //- (IBAction)showSkillManagementPanel:(id)sender;

The implementation contains this:

 - (void)windowControllerDidLoadNib:(NSWindowController *)aController
 {
     [super windowControllerDidLoadNib:aController];
     if (![self db]) {
         db = [[MW_db alloc] init];
         NSLog ( @"Debug - Init of db: [%ld]", db ); // never mind the casting problem
     }
 }

db points at something other than nil, a true address.

Later on, I want to open a window and have this in the implementation of the same NSDocument subclass:

 - (IBAction)showWorkerManagementWindow:(id)sender
 {
     if ( !workerController) {
         workerController = [[MW_WorkerWindowController alloc] initWithDb:db];
     }
     [workerController showWindow:self];
 }

I put a break point at the first line, and look at the value of db. It is nil, but I have no idea why. Can anyone explain this to me?

  • 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-06-06T16:17:24+00:00Added an answer on June 6, 2026 at 4:17 pm

    You can implement a lazy accessor:

    - (MW_db *)db
    {
        if (db == nil) {
            db = [[MW_db alloc] init];
        }
        return db;
    }
    

    And then use it instead of the ivar:

    workerController = [[MW_WorkerWindowController alloc] initWithDb:[self db]];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have an disappearing delete animation code and I want to get the entire
Come see the amazing disappearing rectangle! But seriously I have a really simple HTML5
Have a problem with my submit button image disappearing but only in IE7 and
Does anybody have a scoop on JQuery 1.6.1 disappearing from Google APIs? Today, on
I think it's considered a bad practice to have controls appearing and disappearing and
I have a modal window with a login/sign-up form. I would like to prevent
Edit: Made more clearer I have a problem with a variable disappearing between function
The View Controllers in my Storyboard file keep disappearing. As of now I have
I have a multi-series column chart with multiple y-axes. The y-axis is set such
I have a thread which performs some tasks. At the end I want to

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.