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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T14:59:08+00:00 2026-06-04T14:59:08+00:00

so i need a NSDocument with a backend instance that all views can access

  • 0

so i need a NSDocument with a backend instance that all views can access and the objects in the backend can access. At the moment i’ve got a shared instance, but this limits the document to only one. the code is simply like this:

static id sharedInstance = nil;

+(void)initialize {
    if (self == [ApricumBackend class]) {
        sharedInstance = [[self alloc] init];       
    }
}
+ (id)mainBackend {
    return sharedInstance;
}

But this doesn’t work the way i want it to. So how can i achieve that one NSDocument has one variable every view can access and how can i get every object in the backend to be able access the backend? I’ve made a little graph:
an awesome graph

Important is also that the objects in the backend object need to have access to the backend object while they “init”

Thanks

  • 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-04T14:59:09+00:00Added an answer on June 4, 2026 at 2:59 pm

    For the objects, you create a common subclass of NSObject that includes the designated initializer:

    + (id)initWithBackend:(Backend *)backend;
    

    Perhaps call it BackendObject. Then your objects should subclass BackendObject and add initializer methods which are appropriate, for example:

    + (id)initWithSomething:(Something *)something backend:(Backend *)backend;
    

    These initializer methods can then call the superclass initializer, and the backend object (which the graph shows as owning them) needs to pass self when it initializes them.

    For the views, you can access the document from within the NSView subclass initializer using:

    MyDocument *mydoc = [[[self window] windowController] document];
    

    And provide an accessor to get to the backend, which can be held as an instance variable:

    Backend *backend = [mydoc backend];
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a NSDocument class, where I'd need to access the main menu window,
need a little help with this one. I have a form that I am
Need help with an error message that I just can't figure out. I am
Need to launch a new ASP.NET site on this server but need to be
Need for two dimensional array of objects that could be something like: myContainer<myObject*> *a
need a quick help here. I have a series of hyperlinks all with the
Need some help to solve this. I have a gridview and inside the gridview
Need some insight on how this works I have the following piece of code
Is this ok, to load NSWindowController from NSDocument, and keep reference to NSArrayController? I
I am playing with AppKit and NSDocument and I don't know why this is

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.