• Open Menu Close Menu
  • Apple
  • Shopping Bag
  • Apple
  • Mac
  • iPad
  • iPhone
  • Watch
  • TV
  • Music
  • Support
  • Search apple.com
  • Shopping Bag

Lists

Open Menu Close Menu
  • Terms and Conditions
  • Lists hosted on this site
  • Email the Postmaster
  • Tips for posting to public mailing lists
Re: iOS: Using AppDelegate as an app-wide singleton
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: iOS: Using AppDelegate as an app-wide singleton


  • Subject: Re: iOS: Using AppDelegate as an app-wide singleton
  • From: Carl Hoefs <email@hidden>
  • Date: Tue, 01 Dec 2015 17:20:15 -0700

The following seems to be working out for me.

#import "AppCommon.h"
@implementation AppCommon
+ (AppCommon *)shared
{
    static AppCommon *shared = nil;
    static dispatch_once_t token;
    dispatch_once(&token, ^{
        shared = [[self alloc] init];
    });
    return shared;
}

-Carl


> On Dec 1, 2015, at 4:55 PM, Quincey Morris <email@hidden> wrote:
>
> On Dec 1, 2015, at 12:58 , Carl Hoefs <email@hidden <mailto:email@hidden>> wrote:
>
>> available to all classes via [[UIApplication sharedApplication] delegate].
>
>> Are there any drawbacks to this?
>
> I don’t find this practice very objectionable, but the drawback is that '[[UIApplication sharedApplication] delegate]’ has the wrong class, so you usually end up writing some sort of global function to get it pre-cast.
>
> In that case, you may as well use a different object, make it a local static variable in a class implementation, and write a static method (“[MyContextCache sharedContextCache]”) to get it. Don’t forget to use dispatch_once to create the singleton. You may not have any thread safety concerns right now, but you might easily do so later.
>
>

_______________________________________________

Cocoa-dev mailing list (email@hidden)

Please do not post admin requests or moderator comments to the list.
Contact the moderators at cocoa-dev-admins(at)lists.apple.com

Help/Unsubscribe/Update your Subscription:

This email sent to email@hidden


  • Follow-Ups:
    • Re: iOS: Using AppDelegate as an app-wide singleton
      • From: Quincey Morris <email@hidden>
    • Re: iOS: Using AppDelegate as an app-wide singleton
      • From: Rick Mann <email@hidden>
References: 
 >iOS: Using AppDelegate as an app-wide singleton (From: Carl Hoefs <email@hidden>)
 >Re: iOS: Using AppDelegate as an app-wide singleton (From: Quincey Morris <email@hidden>)

  • Prev by Date: Re: iOS: Using AppDelegate as an app-wide singleton
  • Next by Date: Re: iOS: Using AppDelegate as an app-wide singleton
  • Previous by thread: Re: iOS: Using AppDelegate as an app-wide singleton
  • Next by thread: Re: iOS: Using AppDelegate as an app-wide singleton
  • Index(es):
    • Date
    • Thread