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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T22:17:19+00:00 2026-06-08T22:17:19+00:00

As per my previous question, here , I’ve adapted my Data Controller class over

  • 0

As per my previous question, here, I’ve adapted my Data Controller class over to use a singleton design pattern so that I can use it only once across multiple views. However I do have a couple question I can’t seem to find the solution too.

Firstly I’m not exactly sure how to call the class/object in the two views to make it work, and secondly I’ve made the initialisation method global with + but do I need to do this with each of the methods?

The initialisation of of the class that I want to be able to share across the views, in order to share the data, is

static SpeecherDataController *_instance = nil;  // <-- important 

+(SpeecherDataController *)instance
{ 
    // skip everything
    if(_instance) return _instance; 

    // Singleton
    @synchronized([SpeecherDataController class]) 
    {
        if(!_instance)
        {
            _instance = [[self alloc] init];

            //  NSLog(@"Creating global instance!"); <-- You should see this once only in your program
        }

        return _instance;
    }

    return nil;
}

The class uses three Mutable Arrays as the main content which need to be both set and read in the two views.

  • 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-08T22:17:22+00:00Added an answer on June 8, 2026 at 10:17 pm

    If I understand your questions correctly, I think the answers are:

    1. You can use something like:

      SpeecherDataController * localReference = [SpeecherDataController instance]; 
      

      and then later:

      [localReference someMessage:param]; // or ...
      localReference.property = whatever; 
      
    2. No, the methods on your SpeecherDataController class do not also need to be made class methods (i.e., they do not need to have the + prefix, they can use - if you want to access ivars within them).

    Note: I think you want to replace [[self alloc] init]; with [[SpeecherDataController alloc] init]; in your implementation of instance.

    (Also, note: I was unable to follow your link to “here” above to see your previous question. So my apologies if I misunderstood something.)

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

Sidebar

Related Questions

I'm implementing a table per subclass design I discussed in a previous question .
Per an answer to a previous question (answer here: SQL/Database Views in Grails ),
Per my previous question , I wish that a boost::shared_ptr<A> was actually a subclass
Per a client's request I have written a communication class that inherits from webclient.
This is a more concrete question that is connected with my previous one. I
As per my previous question: Rhino Mocks - Testing Repository layer returns "object reference
So as per a previous question of mine I've decided to start a website
The answer to a previous question showed that Nexus implement a custom authentication helper
This question is very similar to that posed here . My problem is that
As per my previous question , I need to redirect an HTTP POST request

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.