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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T06:13:22+00:00 2026-05-26T06:13:22+00:00

suppose I got a singleton class MySingleton as coded below. Now is a singleton

  • 0

suppose I got a singleton class MySingleton as coded below.

Now is a singleton class just like any other class. I can have instance variables that are nonatomic and retain?

I can have: @property (nonatomic, retain) NSString* instanceVar in the .h file

and @synthesize instanceVar in the .m file?

static MySingleton* _sharedMySingleton = nil;

+(MySingleton*)sharedMySingleton
{
    @synchronized([MySingleton class])
    {
        if (!_sharedMySingleton)
            [[self alloc] init];

        return _sharedMySingleton;
    }

    return nil;
}

+(id)alloc
{
    @synchronized([MySingleton class])
    {
        NSAssert(_sharedMySingleton == nil, @"Attempted to allocate a second instance of a singleton.");
        _sharedMySingleton = [super alloc];
        return _sharedMySingleton;
    }

    return nil;
}
  • 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-26T06:13:22+00:00Added an answer on May 26, 2026 at 6:13 am

    Yes, the instance of a singleton class behaves the same as a standard class, there is just one instance.

    The pattern you have is overly complicated, there is no need for +(id)alloc
    Here is a simplier pattern:

    @implementation MySingleton
    static MySingleton* _sharedMySingleton = nil;
    
    +(MySingleton*)sharedMySingleton
    {
        @synchronized([MySingleton class])
        {
            if (!_sharedMySingleton)
                _sharedSingleton = [[MySingleton alloc] init];
        }
    
        return _sharedMySingleton;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

so suppose I have a java package.... it's got the main class with the
Suppose we got a code like this: IEnumerable<Foo> A = meh(); IEnumerable<Foo> B =
Suppose I've got the following program: namespace ReflectionTest { public class Example { private
Suppose I've got a table: Role ---- person_id company_id financial_year How can I tell
Suppose I've got a custom form label with some HTML on it like so:
Suppose you have got a bunch of files written in C, C++ or Fortran,
Suppose I got an apk file, how can I check the package of it?
Suppose I've got 2 different modules which have the uniform(same) interfaces. The files list
Suppose I got the string of date look like 01:07:13 May 07, 2011 PDT,
Suppose I've got a set of textboxes of the form: <input class=member type=text name=integrantes[]

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.