iOS下單例模式實現(一)(objective-c arc gcd)

單例模式確保某一個類只有一個實例,並且自行實例化並向整個系統提供這個實例。xcode

這裏主要介紹下在arc下,利用gcd實現單例。多線程

 

第一步:聲明一個靜態實例 spa

static SoundTool *_instance;線程

第二步:重寫初始化方法code

+ (id)allocWithZone:(struct _NSZone *)zone對象

在對象初始化分配內存的時候都會調用這個方法,重寫該方法時,即使用戶沒用經過shared方法獲取實例,本身初始化依然能夠保證獲得的是同一個實例。blog

在gcd後,多線程下保證一個代碼只被執行一次提供了一個便捷的方式就是dispatch_once。內存

這個代碼方法並不須要認真記憶。在xcode中已經內置了代碼段。敲下dispath_once就會有智能提示。it

 

第三步:聲明一個類方法共享實例io

+ (SoundTool *)sharedSoundTool

@implementation SoundTool

static SoundTool *_instance;

+ (SoundTool *)sharedSoundTool

{
    static dispatch_once_t onceToken;

    dispatch_once(&onceToken, ^{

        _instance=[self new];
    });

    return _instance;
}

+ (id)allocWithZone:(struct _NSZone *)zone
{
    static dispatch_once_t onceToken;

    dispatch_once(&onceToken, ^{

        _instance=[super allocWithZone:zone];

    });
    return_instance;
}
@end
相關文章
相關標籤/搜索